API Reference Overview
This section provides detailed information about the API Credential service endpoints, authentication methods, and response formats.
Base URL
The base URL for all API endpoints is:
For local development, the base URL is:
API Versions
The API Credential service supports multiple API versions:
- v0: Legacy API (deprecated)
- v1: Current stable API
To specify the API version, include it in the URL path:
Authentication
All API endpoints require authentication. The API Credential service supports the following authentication methods:
Token Authentication
Most endpoints require a token in the Authorization
header:
API Key Authentication
Some endpoints support License key authentication. Include the API key in the X-License-Key
header:
Response Format
All API responses are in JSON format. A typical response has the following structure:
{
"status": "success",
"data": {
// Response data
},
"message": "Operation completed successfully"
}
Error Responses
Error responses have the following structure:
Next Steps
- Visit our Swagger Documentation for interactive API testing and exploration.