Skip to main content
GET
/
v1
/
capabilities
/
{capability}
curl https://api.saturn-pay.com/v1/capabilities/reason \
  -H "Authorization: Bearer sk_agt_..."
{
  "name": "reason",
  "description": "LLM inference — completions, summarization, extraction",
  "defaultProvider": "openai",
  "providers": [
    {
      "name": "openai",
      "models": [
        {
          "id": "gpt-4o",
          "inputPricePer1kTokens": 2.5,
          "outputPricePer1kTokens": 10.0,
          "maxTokens": 128000
        },
        {
          "id": "gpt-4o-mini",
          "inputPricePer1kTokens": 0.15,
          "outputPricePer1kTokens": 0.6,
          "maxTokens": 128000
        }
      ]
    },
    {
      "name": "anthropic",
      "models": [
        {
          "id": "claude-sonnet-4-20250514",
          "inputPricePer1kTokens": 3.0,
          "outputPricePer1kTokens": 15.0,
          "maxTokens": 200000
        }
      ]
    }
  ]
}
Returns detailed information about a specific capability including all available providers, models, and pricing.

Path Parameters

capability
string
required
The capability name. One of: reason, search, read, scrape, execute, imagine, speak, transcribe, email, sms

Response

name
string
Capability identifier
description
string
Human-readable description
providers
array
List of provider configurations
defaultProvider
string
The default provider used when none is specified
curl https://api.saturn-pay.com/v1/capabilities/reason \
  -H "Authorization: Bearer sk_agt_..."
{
  "name": "reason",
  "description": "LLM inference — completions, summarization, extraction",
  "defaultProvider": "openai",
  "providers": [
    {
      "name": "openai",
      "models": [
        {
          "id": "gpt-4o",
          "inputPricePer1kTokens": 2.5,
          "outputPricePer1kTokens": 10.0,
          "maxTokens": 128000
        },
        {
          "id": "gpt-4o-mini",
          "inputPricePer1kTokens": 0.15,
          "outputPricePer1kTokens": 0.6,
          "maxTokens": 128000
        }
      ]
    },
    {
      "name": "anthropic",
      "models": [
        {
          "id": "claude-sonnet-4-20250514",
          "inputPricePer1kTokens": 3.0,
          "outputPricePer1kTokens": 15.0,
          "maxTokens": 200000
        }
      ]
    }
  ]
}