Skip to content

License Plate

GET Auth required

Returns vehicle information and the Vehicle Identification Number (VIN) associated with a license plate. Supported countries each have different data availability — some values may be returned as null depending on the country requested.

US, CA, AU, UK, FR, IE, NZ, MX, CZ, PT

ParameterRequiredDescription
country_codeYesISO 3166-1 alpha-2 country code (e.g. US, CA, UK)
lookupYesThe license plate (or registration number) to look up
regionConditionalProvince, state, or region — required for US, CA, and AU

Append #TEST to any plate to receive test data without consuming API credits:

  • US: /api/license-plate?country_code=US&region=NY&lookup=830UNL#TEST
  • Canada: /api/license-plate?country_code=CA&region=BC&lookup=#TEST
  • UK: /api/license-plate?country_code=UK&lookup=#TEST-LD59YMR
Terminal window
curl "https://carapi.app/api/license-plate?country_code=US&region=NY&lookup=830UNL%23TEST" \
-H "Authorization: Bearer YOUR_JWT_TOKEN_HERE"
{
"year": 2009,
"make": "Kia",
"model": "Rio Base / LX / SX",
"body": "Sedan 4D",
"vin": "KNADE223696445551",
"engine_description": "1.6L I4 MPI",
"assembled_in": "South Korea"
}
  • Always test first: Use the #TEST suffix to verify your integration before going live.
  • Region is required for US, CA, AU: Omitting it for these countries will return a 400 error.