P5 · Public API

Pricing data, programmatically.

High-margin B2B API for banks, insurers, and proptech. Tier-based rate limits, monthly quotas, predictable schemas.

Authentication

Pass your API key in the X-API-Key header.

curl https://api.pricer.io/v1/usage \
  -H "X-API-Key: demo-key-professional"

POST/v1/price/estimate

Returns a fair-price estimate for a single configuration.

Request

curl -X POST https://api.pricer.io/v1/price/estimate \
  -H "X-API-Key: demo-key-professional" \
  -H "Content-Type: application/json" \
  -d '{
    "vertical": "auto",
    "dims": {
      "make": "toyota",
      "model": "camry",
      "year": 2018,
      "mileage_km": 120000,
      "region": "limassol"
    }
  }'

Live demo

Try it now (uses the same backend, public API mock):

// response will appear here

POST/v1/price/bulk-estimate

Up to 100 configurations per request. Available on Professional and Enterprise tiers.

GET/v1/market/segments

List of all known segments with median, percentiles, and trend.

GET/v1/usage

Current month usage and tier info for the API key.

Tiers

Starter
€199/mo
  • 10,000 requests / month
  • 30 RPM
  • Single estimate endpoint
Professional
€1,500/mo
  • 100,000 requests / month
  • 120 RPM
  • Bulk + segments + trends
Enterprise
Custom
  • 1,000,000+ requests
  • 600 RPM
  • SLA, dedicated support

Errors

StatusReason
401Missing or invalid X-API-Key
404No data for the requested segment
429Rate limit exceeded — see Retry-After
5xxServer error — retry with exponential backoff