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/json

Standard 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 HeaderFormatDescription
application/jsonJSONDefault response format
application/xmlXMLXML response format
application/x-yamlYAMLYAML response format
text/csvCSVCSV response format
text/markdownMarkdownMarkdown 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/xml

HTTP Status Codes

APIVerve uses standard HTTP status codes to indicate the success or failure of requests:

CodeStatusDescription
200OKRequest successful
400Bad RequestInvalid parameters or malformed request
401UnauthorizedInvalid or missing API key
403ForbiddenAPI key lacks permission for this endpoint
404Not FoundEndpoint or resource not found
429Too Many RequestsRate limit exceeded
500Internal Server ErrorServer 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:

JavaScript/Node.js

For web applications and Node.js backends

Python

For Python applications and data science

C#/.NET

For .NET applications and enterprise systems

What's Next?

Continue your journey with these recommended resources

Was this page helpful?

Help us improve our documentation