Welcome to Contazen API

The Contazen API is organized around REST, has predictable resource-oriented URLs, accepts form-encoded request bodies, returns JSON-encoded responses, and uses standard HTTP response codes, authentication, and verbs.

Key Features

Base URL

All API requests should be made to:
https://api.contazen.ro

Authentication

The Contazen API uses API keys to authenticate requests. You can view and manage your API keys in the API Keys Dashboard.
curl https://api.contazen.ro/v1/clients \
  -H "Authorization: Bearer sk_live_YOUR_API_KEY"

Response Format

All API responses follow a consistent structure:
{
  "success": true,
  "data": {
    // Response data
  },
  "meta": {
    "version": "v1",
    "response_time": "12.45ms"
  }
}

Rate Limiting

API requests are rate limited to ensure stability:
  • Rate limit: 100 requests per minute

Need Help?