1. ALL LOTS
APICAR
  • Only CURRENT lots
    • Get current active lots
      GET
    • Get current lot by Lot ID
      GET
    • Get current lot by VIN
      GET
    • Get current bid
      GET
    • Get current bid for many lots
      POST
  • Only HISTORY
    • Get sold/history lots
      GET
    • Get history car by ID
      GET
    • Get latest history sale by VIN
      GET
    • Get all sale histories by VIN
      GET
    • Get all sale histories by Lot ID
      GET
    • Get average sale price statistic
      GET
    • Get sale count info by lots
      POST
  • ALL LOTS
    • Find lot by Lot ID in any status
      GET
    • Find lot by VIN in any status
      GET
    • Find many lots in any status
      POST
    • Find many lots by VIN in any status
      POST
    • Find lot for catalog/web by Lot ID
      GET
  • OTHER
    • Get makes and models
      GET
    • Get available filters
      GET
  • CREATING DATABASE
    • Get updated current lots
      GET
    • Get deleted current lots
      GET
    • Get updated history lots
      GET
  1. ALL LOTS

Find many lots in any status

POST
/cars/all/many
Batch lookup by IDs regardless of state: current or history. Maximum 100 IDs.

Request

Header Params

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Success
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.apicar.store/api/cars/all/many' \
--header 'api-key;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "ids": [
        "string"
    ],
    "hide_vins": [
        "string"
    ]
}'
Response Response Example
{}
Modified at 2026-04-29 15:49:33
Previous
Find lot by VIN in any status
Next
Find many lots by VIN in any status
Built with