Skip to main content

Welcome to Steer AI API

The Steer AI API provides programmatic access to our AI-powered vehicle inspection, pricing, and CRM platform. Build custom integrations, automate workflows, and create powerful automotive applications.

Base URL

All API endpoints are relative to the base URL: Production: https://api.steerai.autos/v1 Sandbox: https://api-sandbox.steerai.autos/v1

Authentication

All API requests require authentication using Bearer tokens:
curl -X GET "https://api.steerai.autos/v1/inspections" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
Security Note: Never expose your API keys in client-side code. Always use server-side implementations for production applications.

Request/Response Format

Request Headers

All requests should include these headers:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
User-Agent: YourApp/1.0

Response Format

All API responses follow this consistent structure:
{
  "status": "success",
  "data": {
    // Response data here
  },
  "meta": {
    "request_id": "req_1234567890abcdef",
    "timestamp": "2024-01-15T10:30:00Z",
    "processing_time": 1.234,
    "rate_limit": {
      "limit": 1000,
      "remaining": 999,
      "reset": 1640995200
    }
  }
}

Core API Endpoints

Rate Limits

Rate limits are enforced per API key and vary by plan:
PlanRequests/HourConcurrentBurst Limit
Free1,000550
Starter10,00020200
Professional100,0001001,000
EnterpriseUnlimitedCustomCustom

SDKs and Libraries

I