API Endpoints
Explore all available APIVerve endpoints with interactive examples, detailed parameters, and response formats.
Base URL
Production Endpoint
https://api.apiverve.com/v1/Authentication
All API requests require authentication via the X-API-Key header.
Authentication Header
GET /v1/endpoint HTTP/1.1
Host: api.apiverve.com
X-API-Key: your_api_key_here
Content-Type: application/jsonStandard Response Format
All API endpoints return responses in a consistent JSON format:
Success Response
{
"status": "ok",
"error": null,
"data": {
// Endpoint-specific data
}
}Error Response
{
"status": "error",
"error": "Invalid API key",
"data": null
}Rate limit information is returned in response headers. See Rate Limits for details.
Response Formats
Control the response format using the Accept header:
| Accept Header | Format | Description |
|---|---|---|
| application/json | JSON | Default response format |
| application/xml | XML | XML response format |
| application/x-yaml | YAML | YAML response format |
| text/csv | CSV | CSV response format |
| text/markdown | Markdown | Markdown response format |
Example: Request XML Format
GET /v1/endpoint HTTP/1.1
Host: api.apiverve.com
X-API-Key: your_api_key_here
Accept: application/xmlHTTP Status Codes
APIVerve uses standard HTTP status codes to indicate the success or failure of requests:
| Code | Status | Description |
|---|---|---|
| 200 | OK | Request successful |
| 400 | Bad Request | Invalid parameters or malformed request |
| 401 | Unauthorized | Invalid or missing API key |
| 403 | Forbidden | API key lacks permission for this endpoint |
| 404 | Not Found | Endpoint or resource not found |
| 429 | Too Many Requests | Rate limit exceeded |
| 500 | Internal Server Error | Server error, try again later |
Interactive Endpoint Explorer
Use our interactive endpoint explorer to test API calls directly from your browser. Each endpoint includes:
- Complete parameter documentation with types and validation rules
- Interactive request builder with parameter input forms
- Live response examples with syntax highlighting
- Generated code snippets in multiple languages
- Real-time testing with your API key
Official SDKs
Speed up your integration with our official software development kits:
Was this page helpful?
Help us improve our documentation