Start making API calls to SG Cars Trends in under 5 minutes
curl -X GET \ "https://api.sgcarstrends.com/v1/cars?month=2024-01" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": [ { "month": "2024-01", "make": "Toyota", "fuel_type": "Petrol", "vehicle_type": "Passenger Cars", "number": 245 }, { "month": "2024-01", "make": "Honda", "fuel_type": "Petrol", "vehicle_type": "Passenger Cars", "number": 189 } ], "total": 2, "page": 1, "limit": 50 }
curl "https://api.sgcarstrends.com/v1/coe" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/months/latest" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/cars/compare?month=2024-01" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/cars/top-makes?month=2024-01" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/cars?month=2024-01" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/cars/fuel-types/Electric?month=2024-01" \ -H "Authorization: Bearer YOUR_API_KEY"
curl "https://api.sgcarstrends.com/v1/coe/latest" \ -H "Authorization: Bearer YOUR_API_KEY"