Skip to content

← Documentation

Authentication

Product API requests use an API key issued per organization. Dashboard login uses JWT (browser session) and is separate from API keys.

API keys (machine-to-machine)

Create keys in Dashboard → API Keys. Keys use the format sk_carsage_…. The full secret is shown once at creation.

Authorization: Bearer YOUR_API_KEY

Base URL

https://api.carsage.dev/

Example: /v1/vin/decode/WP0AF2A99KS165242

Example request

curl -X GET "https://api.carsage.dev/v1/vin/decode/WP0AF2A99KS165242" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
API key creation activates when the backend endpoint is deployed. Until then, use the setup guide to prepare your integration.