arrows-to-circleCore Concepts

1. Models

Models represent the AI capabilities (chat, image generation, embeddings).

List All Models

curl https://proxy.alfnrl.io/v1/models \
  -H "Authorization: Bearer YOUR_API_KEY"

Example response:

json

{
  "object": "list",
  "data": [
    {"id": "qwen3"},
    {"id": "gemini-3-pro-preview"},
    {"id": "gemini/imagen-4.0"}
  ]
}

2. Tokens

Every request returns:

  • prompt_tokens

  • completion_tokens

  • total_tokens

3. Pricing

You are billed based on tokens used.

See your AlphaNeural Dashboard for pricing.

4. Rate Limits

Example rate limit error:

Last updated