---
title: Get Pricing Sheet
keywords:
  - pricing
  - price sheet
  - synapses
  - neurons
  - rates
  - billing
---

# Get Pricing Sheet

Retrieve the complete public price sheet covering every billable dimension that can appear on an invoice: per-model synapse prices, the token-to-synapse conversion multiplier, priority multipliers, the neurons rate, image-operation weights, code-execution and connector-tool neuron pricing, terminal compute rates, and pricing-tier discounts.

All list prices are in CHF unless a `unit_rate_usd` is given (terminal compute). An organization's pricing-tier discount is applied on top at billing time.

{% api-container %}
{% api-content %}

{% endpoint method="GET" path="https://api.aitronos.com/v1/pricing" /%}

This endpoint takes no parameters. Authentication via Bearer token or API key is required.

---

## Returns

A pricing sheet object with the following sections:

- **`currency_note`** string — Explanation of the billing units (synapses, neurons) and base currency.
- **`conversion`** object — Global conversion rates:
  - `base_multiplier` number — Tokens are multiplied by this to produce synapses.
  - `neurons_price_per_1m_chf` number — Price in CHF per 1,000,000 neurons.
  - `priority_multipliers` object — `low`, `default`, and `high` multipliers applied to synapse consumption.
- **`models`** array — Per-model list pricing. Each entry has `id`, `key`, `name`, and a `pricing` object (`input_price_per_1m_synapses`, `output_price_per_1m_synapses`, `cache_read_price_per_1m_synapses`, `cache_creation_price_per_1m_synapses`, `consumption_synapses_per_second`, `neurons_per_token`, `category`, `currency`).
- **`image_operations`** array — Synapse weight charged per image operation (`operation`, `synapses`).
- **`code_execution`** object — Neuron-based pricing for sandboxed code execution.
- **`connector_tools`** object — Neuron multiplier and rate for connector tool executions.
- **`terminal`** array — Per-dimension terminal compute pricing in USD (`dimension`, `unit_rate_usd`, `unit_label`).
- **`pricing_tiers`** array — Available pricing tiers and their `discount_percentage`.

{% /api-content %}
{% api-examples %}
{% tabs %}

{% tab label="Example" %}

{% code-group mode="dropdown" %}
```bash {% title="cURL" %}
curl -X GET "https://api.aitronos.com/v1/pricing" \
  -H "X-API-Key: $FREDDY_API_KEY"
```

```python {% title="Python" %}
import os
import requests

api_key = os.environ["FREDDY_API_KEY"]

response = requests.get(
    "https://api.aitronos.com/v1/pricing",
    headers={"X-API-Key": api_key}
)

print(response.json())
```

```javascript {% title="JavaScript" %}
const apiKey = process.env.FREDDY_API_KEY;

const response = await fetch('https://api.aitronos.com/v1/pricing', {
  method: 'GET',
  headers: {
    'X-API-Key': apiKey
  }
});

const data = await response.json();
console.log(data);
```
{% /code-group %}

**Response:**

```json {% title="200 OK" %}
{
  "currency_note": "Usage is billed in synapses (chat/completion models) and neurons (embeddings, connector tools, and code execution). Tokens are converted to synapses via base_multiplier and then priced per model. All list prices are in CHF unless a unit_rate_usd is given. Final cost may be reduced by an organization's pricing-tier discount.",
  "conversion": {
    "base_multiplier": 2.0,
    "neurons_price_per_1m_chf": 8.0,
    "priority_multipliers": { "low": 0.8, "default": 1.0, "high": 2.0 }
  },
  "models": [
    {
      "id": "mdl_ftg30pro",
      "key": "ftg-3.0-pro",
      "name": "FTG 3.0 Pro",
      "pricing": {
        "input_price_per_1m_synapses": 13.2,
        "output_price_per_1m_synapses": 66.0,
        "cache_read_price_per_1m_synapses": 1.32,
        "cache_creation_price_per_1m_synapses": 16.5,
        "consumption_synapses_per_second": 1.0,
        "neurons_per_token": null,
        "category": "synapse",
        "currency": "CHF"
      }
    }
  ],
  "image_operations": [
    { "operation": "generate", "synapses": 100000 },
    { "operation": "remove-background", "synapses": 50000 }
  ],
  "code_execution": {
    "base_neuron_cost": 3.0,
    "cpu_neuron_per_second": 1.0,
    "memory_neuron_per_mb_sec": 0.01,
    "cpu_free_seconds": 2.0,
    "memory_free_mb": 256.0,
    "neurons_price_per_1m_chf": 8.0
  },
  "connector_tools": {
    "neuron_multiplier": 8.0,
    "neurons_price_per_1m_chf": 8.0
  },
  "terminal": [
    { "dimension": "cpu_seconds", "unit_rate_usd": 0.00005, "unit_label": "per CPU-second" },
    { "dimension": "ram_gb_seconds", "unit_rate_usd": 0.000007, "unit_label": "per RAM-GB-second" },
    { "dimension": "storage_gb_days", "unit_rate_usd": 0.1, "unit_label": "per storage GB-day" },
    { "dimension": "egress_bytes", "unit_rate_usd": 0.00000000012, "unit_label": "per egress byte" }
  ],
  "pricing_tiers": [
    { "id": "tier_standard", "name": "Standard", "description": "Standard tier with advanced features", "discount_percentage": 10.0 }
  ]
}
```

{% /tab %}

{% tab label="Errors" %}

```json {% title="401 Unauthorized" %}
{
  "success": false,
  "error": {
    "code": "AUTHENTICATION_REQUIRED",
    "message": "Authentication required. Please provide a valid API key.",
    "system_message": "Missing or invalid authorization header",
    "type": "authentication_error",
    "status": 401,
    "trace_id": "req_abc123xyz",
    "timestamp": "2025-11-11T10:30:00Z",
    "details": {}
  }
}
```

{% /tab %}

{% /tabs %}
{% /api-examples %}
{% /api-container %}

---

## Related Resources

- [List Pricing Tiers](./list-pricing-tiers.md)
- [List models](../models/list.md)
