API Documentation

Explore our powerful REST API and learn how to integrate Eseniiiav services into your projects.

Authentication

All API requests require authentication via an API key included in the request header.

Bearer Token Authorization: Bearer <your_api_key>

You can find your API key in the Settings → API Keys section.

Available Endpoints

GET

/api/v1/users

Retrieve a list of users with basic information

Header

Authorization: Bearer <token>

Response

HTTP 200 OK

Example

curl -X GET 
     -H "Authorization: Bearer YOUR_API_KEY" 
     https://api.eseniiiav.com/api/v1/users
POST

/api/v1/tasks

Create a new task with specified parameters

Body (JSON)

{
  "title": "Meeting",
  "due_date": "2025-09-30",
  "priority": "high"
}

Response

HTTP 201 Created
{
  "id": "2348972349871",
  "status": "created"
}

Example

curl -X POST 
     -H "Authorization: Bearer YOUR_api_KEY" 
     -H "Content-Type: application/json" 
     -d '{"title":"Meeting","due_date":"2025-09-30","priority":"high"}' 
     https://api.eseniiiav.com/api/v1/tasks

Try the API

Response will appear here...

Error Handling

HTTP 401 Unauthorized

Occurs when an invalid or missing API key is provided.

{
  "error": "Unauthorized",
  "message": "Missing or invalid API key"
}
                        

HTTP 404 Not Found

Indicates the requested resource does not exist.

{
  "error": "Not Found",
  "message": "Requested resource does not exist"
}
                        

HTTP 429 Too Many Requests

Rate limit exceeded. Check X-RateLimit-Remaining header.

{
  "error": "Too Many Requests",
  "message": "Rate limit exceeded"
}
                        

HTTP 200 OK

Success response when the request completed successfully.

{
  "data": "Your response data",
  "status": "success"
}
                        

API Status

All Systems Operational

Our API uptime is 99.9%+ guaranteed with SLA on all paid plans.

Rate Limiting

Free Plan 100 requests/minute
Pro Plan 500 requests/minute
Enterprise Custom limit

Header: X-RateLimit-Remaining shows available requests.

Need Help?

Our developers are available to help with API integration and troubleshooting.

Contact Support