eliprtow API Reference
This endpoint-driven API provides programmatic access to eliprtow services. All endpoints support TLS encryption and follow REST conventions.
✅ Tip: Use the API Demo to test endpoints interactively.
Authentication
Bearer Token
curl -X POST 'https://api.eliprtow.dev/v1/auth' \ -H 'Content-Type: application/json' \ -d '{"email":"dev@example.com","api_key":"YOUR_KEY"}'
Returns an Authorization: Bearer YOUR_TOKEN
for authenticated requests.
⚠️ Security: Rotate API keys regularly and use short-lived tokens for production environments.
Endpoints
GET /api/v1/projects
Fetch all projects associated with your account.
GET
https://api.eliprtow.dev/api/v1/projects
Headers
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json
Response Example
{
"projects": [
{"id": "proj_001", "name": "Main Project", "created": "2025-09-20T14:48:00Z"},
{"id": "proj_002", "name": "Test Initiative", "created": "2025-09-15T09:15:00Z"}
]
}
POST /api/v1/project
Create a new project.
POST
https://api.eliprtow.dev/api/v1/project
Headers
Authorization: Bearer YOUR_TOKEN
Content-Type: application/json
Body
{
"name": "New Project",
"description": "Experimental AI system",
"environment": "production"
}
⚠️ Validation: Environment must be one of ["development", "staging", "production"]
Rate Limiting
Default Plan
Requests per minute: 120
Burst limit: 200
Reset interval: 1 minute
Enterprise
Error Codes
Status | Code | Message | Action |
---|---|---|---|
Client Error | 401 | Unauthorized | Check your bearer token |
Rate Limit | 429 | Too Many Requests | Wait 1 minute or upgrade plan |
Server Error | 503 | Service Unavailable | Wait 5-10 minutes before retrying |