Test our Korean automotive data API endpoints in real-time. Experience lightning-fast responses and enterprise-grade reliability.
/api/healthSystemCheck the health status of the API service and database connectivity
/api/carsCarsRetrieve a paginated list of cars with optional filtering by brand, model, year, and other criteria
/api/cars/:idCarsRetrieve detailed information about a specific car by its unique identifier
Select an endpoint above, configure parameters, and execute your first API call
Expected response formats for /api/health
API is healthy and operational
{
"type": "object",
"properties": {
"status": {
"type": "string",
"example": "OK"
},
"timestamp": {
"type": "string",
"example": "2024-01-01T00:00:00.000Z"
},
"database": {
"type": "string",
"example": "Connected"
}
}
}