contract 2026-08-19
Endpoints

Market intelligence

Precomputed price snapshots for a brand, model, and year window.

GET

/api/cars-bg-market

Cars.bg Bulgarian retail market snapshot.

Requires the market scope.

Parameters

brand / makestring · query stringrequired

Brand name.

Example BMW·Where the value comes from /api/brands -> brands[].name

modelstring · query stringrequired

Model name.

Example 320d·Where the value comes from /api/models?brand=bmw -> models[].name

yearinteger · query stringrequired

Centre registration year.

Example 2019·Where the value comes from Centre year chosen by your application.

flexinteger · query string

Year tolerance from 0 to 10. Default 1.

Example 2·Where the value comes from Tolerance chosen by your application.

Example requests

Request
GET https://api.thecarapi.com/api/cars-bg-market?brand=BMW&model=320d&year=2019
GET https://api.thecarapi.com/api/cars-bg-market?make=Audi&model=A4&year=2020&flex=2

Example response

json
{
  "success": true,
  "snapshot": {
    "brand": "BMW",
    "model": "320d",
    "year": 2019,
    "sample_size": 42,
    "avg_price_eur": 23100,
    "min_price_eur": 17900,
    "max_price_eur": 29500
  }
}
GET

/api/auction-market

Auction-market price snapshot for the same brand, model, and year window.

Requires the market scope.

Parameters

brand / makestring · query stringrequired

Brand name.

Example BMW·Where the value comes from /api/brands -> brands[].name

modelstring · query stringrequired

Model name.

Example 320d·Where the value comes from /api/models?brand=bmw -> models[].name

yearinteger · query stringrequired

Centre registration year.

Example 2019·Where the value comes from Centre year chosen by your application.

flexinteger · query string

Year tolerance from 0 to 10. Default 1.

Example 2·Where the value comes from Tolerance chosen by your application.

scopeenum · query string

Default all.

Example active·Where the value comes from Choose all, active, or inactive.

Example requests

Request
GET https://api.thecarapi.com/api/auction-market?brand=BMW&model=320d&year=2019&scope=active
GET https://api.thecarapi.com/api/auction-market?brand=Kia&model=EV6&year=2023&flex=1

Example response

json
{
  "success": true,
  "snapshot": {
    "brand": "BMW",
    "model": "320d",
    "year": 2019,
    "scope": "active",
    "sample_size": 118,
    "avg_price_eur": 18400
  }
}