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

Open Dashboard

2. Make Your First Request

Send your first message to Claude using your API key

bash
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.

API Key Format

Your API key starts with sk-cylie- followed by a unique identifier. Keep it secure.

API Endpoints

EndpointMethodDescription
/anthropic/v1/messagesPOSTSend a message to Claude
/anthropic/v1/modelsGETList available models

Available Models

Use the /anthropic/v1/models endpoint to get the full list.

Sonnet Models

Model IDContext
claude-3-5-sonnet200K
claude-3-5-sonnet-latest200K
claude-sonnet-4-5200K
claude-sonnet-4-5-latest200K
claude-sonnet-4-6200K
claude-sonnet-4-6-latest200K
claude-3-5-sonnet-20241022200K
claude-3-5-sonnet-20240620200K
claude-3-sonnet-20240229200K

Opus Models

Model IDContext
claude-opus-4-6200K
claude-opus-4-6-latest200K
claude-opus-4-7200K
claude-opus-4-7-latest200K
claude-opus-4-8200K
claude-opus-4-8-latest200K
claude-3-opus-20240229200K

Haiku Models

Model IDContext
claude-3-5-haiku200K
claude-3-5-haiku-latest200K
claude-haiku-4-5200K
claude-haiku-4-5-latest200K
claude-3-5-haiku-20240307200K

Request Limits

Every user has configurable request limits.

Limit TypeDefaultWindow
5-Hour100 requestsResets after 5 hours of inactivity
7-Day500 requestsResets weekly
Custom Limits

Admins can set custom limits per user through the admin panel.

Token Usage

Your dashboard displays comprehensive token usage statistics.

Track Your Usage

Token counts accumulate over time and never reset.

Error Codes

StatusErrorSolution
401UnauthorizedCheck your API key
429Rate LimitedWait or check dashboard

Troubleshooting

Error 401 Unauthorized

Your API key is invalid or the account is inactive.

Error 429 Rate Limited

You've exceeded your request quota.

Ready to Build?

Start integrating Cylie Gateway into your IDE or application today.

DocsIDE Setup