Skip to Content
Models

Models

Use model IDs from your Accly account in Gateway API requests. Your plan controls which model tiers and capabilities you can access.

Model IDs

Use the Accly model ID in the model field of Gateway API requests:

request.json
{
  "model": "claude-opus-4-7",
  "messages": [
    {
      "role": "user",
      "content": "Summarize this release note."
    }
  ]
}

Use model IDs shown in the Accly app model picker or account model list. Model availability and capabilities may change, so avoid hard-coding a model ID that is not available to your account.

Where models appear

Find available model IDs in the Accly app model picker or account model list. These surfaces show the models available to your account and plan.

For Gateway API requests, use a model ID visible in your Accly account.

You can also list active public Gateway models:

curl
curl https://api.accly.net/v1/models

The response uses an OpenAI-style list envelope and includes Accly-safe catalog fields such as model ID, display name, provider family, tier, status, context window, maximum output, and public pricing metadata.

response.json
{
  "object": "list",
  "data": [
    {
      "id": "claude-haiku-4-5-20251001",
      "object": "model",
      "created": 0,
      "owned_by": "anthropic",
      "display_name": "Claude Haiku 4.5",
      "provider_family": "anthropic",
      "tier": "basic",
      "status": "active",
      "context_window": 200000,
      "max_output": 8192,
      "pricing": {
        "input": 1,
        "output": 5
      }
    }
  ]
}

Use provider and tier query parameters to narrow the list:

curl
curl "https://api.accly.net/v1/models?provider=anthropic&tier=basic"

Model tiers

Plans control model access by tier.

PlanModel tiers
FreeBasic
StarterBasic, Advanced
ProBasic, Advanced, Thinking, Beta
MaxBasic, Advanced, Thinking, Beta

Beta-tagged models are available to Pro and Max while they are tagged as beta.

API formats

Supported models can expose one or more provider-compatible API formats:

  • OpenAI-compatible chat completions
  • OpenAI-compatible responses
  • Anthropic-style messages
  • Google/Gemini-style generate content

Use the endpoint family and API key type that match your client or tool. Model availability by protocol can vary by model and plan.

Capabilities

The model catalog can label capabilities such as:

  • Streaming
  • Vision
  • Tools
  • Thinking or reasoning-style behavior
  • Web search
  • Code execution
  • Computer use
  • PDF, image, video, and audio input or output support
  • Context window and maximum output metadata

Not every active model supports every capability. Check the model picker or account model list before relying on vision, tools, long context, reasoning, or other model-specific features.

Do I need provider API keys?

No. You use an Accly API key.

Accly handles access to supported model providers through the gateway. You do not need separate OpenAI, Anthropic, Google, or other provider API keys for normal Accly Gateway API usage.