Welcome to elogg's Developer Docs
This documentation provides comprehensive guides and references to interact with our platform. Learn how to authenticate, send requests, and integrate with our services.
All API requests require an authentication token in the Authorization header.
Authorization: Bearer YOUR_API_KEY
Getting Started
Base URL
https://api.elagoggg.com/v1
Authentication
All API requests must include an Bearer
token in the Authorization header.
Request
GET /users
Authorization: Bearer YOUR_API_KEY
Response
HTTP/1.1 200 OK
Content-Type: application/json
Cache-Control: no-cache
Date: Wed, 01 Jan 1970 00:00:00 GMT
Content-Length: 150
{
"users": [{"id": "12345"}],
"meta": {"total": 1}
}
Endpoints
Endpoint | Method | Description |
---|---|---|
/users | GET | Retrieve list of users |
/user/{id} | GET | Fetch a specific user |
/user | POST | Create a new user |
Request Body Example
{ "email": "user@example.com", "name": "John Doe" }
Rate Limits
We use a token-bucket algorithm with 1000 requests per minute for ungraded plans.
Rate limits are per API key, not per endpoint.
Plan | RPM | Window |
---|---|---|
Free | 1000 | 1 Minute |
Pro | 5000 | 1 Minute |