Error code

invalid_request

Correct malformed request data. The request body or parameters did not match the operation's schema.

What happened

Read details[] before changing the request. Each entry names a failing field in path and explains the expected shape in message; when details is absent, the top-level message names the request-level failure.

Do this next

Correct every named field, keep the operation and authentication unchanged, and send the request again. Use GET /v2/openapi.json when you need the authoritative request schema.

Corrected request

bash

curl "https://api.cardog.app/v2/vin/batch" \
  -X POST \
  -H "content-type: application/json" \
  -H "x-api-key: $CARDOG_API_KEY" \
  --data '{"vins":["1HGCM82633A123456"]}'