Build with Cylie Gateway
A powerful API aggregation service for Claude Code with user management, request limits, and comprehensive usage tracking.
Quick Start
1. Get Your API Key
Login to your dashboard to retrieve your personal API key
2. Make Your First Request
Send your first message to Claude using your API key
curl -X POST https://gateway.neroism.web.id/anthropic/v1/messages \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "claude-sonnet-4-6",
"max_tokens": 1024,
"messages": [{
"role": "user",
"content": "Hello, Claude!"
}]
}'Authentication
All API requests require authentication using your personal API key. Include your API key in the Authorization header as a Bearer token.
Your API key starts with sk-cylie- followed by a unique identifier. Keep it secure.
API Endpoints
| Endpoint | Method | Description |
|---|---|---|
/anthropic/v1/messages | POST | Send a message to Claude |
/anthropic/v1/models | GET | List available models |
Available Models
Use the /anthropic/v1/models endpoint to get the full list.
Sonnet Models
| Model ID | Context |
|---|---|
claude-3-5-sonnet | 200K |
claude-3-5-sonnet-latest | 200K |
claude-sonnet-4-5 | 200K |
claude-sonnet-4-5-latest | 200K |
claude-sonnet-4-6 | 200K |
claude-sonnet-4-6-latest | 200K |
claude-3-5-sonnet-20241022 | 200K |
claude-3-5-sonnet-20240620 | 200K |
claude-3-sonnet-20240229 | 200K |
Opus Models
| Model ID | Context |
|---|---|
claude-opus-4-6 | 200K |
claude-opus-4-6-latest | 200K |
claude-opus-4-7 | 200K |
claude-opus-4-7-latest | 200K |
claude-opus-4-8 | 200K |
claude-opus-4-8-latest | 200K |
claude-3-opus-20240229 | 200K |
Haiku Models
| Model ID | Context |
|---|---|
claude-3-5-haiku | 200K |
claude-3-5-haiku-latest | 200K |
claude-haiku-4-5 | 200K |
claude-haiku-4-5-latest | 200K |
claude-3-5-haiku-20240307 | 200K |
Request Limits
Every user has configurable request limits.
| Limit Type | Default | Window |
|---|---|---|
| 5-Hour | 100 requests | Resets after 5 hours of inactivity |
| 7-Day | 500 requests | Resets weekly |
Admins can set custom limits per user through the admin panel.
Token Usage
Your dashboard displays comprehensive token usage statistics.
Token counts accumulate over time and never reset.
Error Codes
| Status | Error | Solution |
|---|---|---|
| 401 | Unauthorized | Check your API key |
| 429 | Rate Limited | Wait or check dashboard |
Troubleshooting
Your API key is invalid or the account is inactive.
You've exceeded your request quota.
Ready to Build?
Start integrating Cylie Gateway into your IDE or application today.