API Keys
Integrate Autowalk into your own systems via our REST API
API access is available on Pro and Dealer plans. Your current plan includes read-only key visibility.
Live API Key
Secret key
Active
aw_live_4x7m••••••••••••••••••••••••••••Created Jun 1, 2026Last used Jun 7, 2026
Keep your API key secret. Never expose it in client-side code or version control. Regenerating invalidates the previous key immediately.
API Endpoints
Full docsPOST
/v1/jobsSubmit a new job (URL or VIN + photos)
GET
/v1/jobsList all jobs for your account
GET
/v1/jobs/{id}Get job status and asset URLs
POST
/v1/webhooksRegister a webhook for job completion
Example Request
submit-job.sh
curl -X POST https://api.getautowalk.com/v1/jobs \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source_url": "https://www.iaai.com/VehicleDetail/12345",
"webhook_url": "https://yoursite.com/webhook/autowalk"
}'