> ## Documentation Index
> Fetch the complete documentation index at: https://docs.subconscious.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Dedicated Endpoints

> Reserved compute with guaranteed capacity

Dedicated endpoints give your organization reserved inference capacity with guaranteed throughput, custom rate limits, and stricter isolation.

<CardGroup cols={3}>
  <Card title="Guaranteed throughput" icon="gauge-high">
    Reserved capacity with no noisy neighbors
  </Card>

  <Card title="Custom rate limits" icon="sliders">
    Higher token and request limits tailored to your workload
  </Card>

  <Card title="Stricter isolation" icon="shield-halved">
    Dedicated compute for regulated environments
  </Card>
</CardGroup>

## What You Get

* **Reserved GPU capacity** so your requests always have compute available, with no queuing behind other customers.
* **Custom rate limits** with token-per-minute and request-per-minute limits configured to your needs.
* **SLA guarantees** including uptime and latency commitments for production workloads.
* **Priority support** with direct access to our engineering team.

## How It Works

Dedicated endpoints use the same OpenAI- and Anthropic-compatible API, so your code doesn't change. We provision isolated compute for your organization and configure your API keys to route to dedicated infrastructure.

<CodeGroup>
  ```python Python (OpenAI) theme={null}
  from openai import OpenAI

  # Same API, same SDK, just higher limits and dedicated compute
  client = OpenAI(
      api_key="your-api-key",
      base_url="https://api.subconscious.dev/v1",
  )
  ```

  ```python Python (Anthropic) theme={null}
  from anthropic import Anthropic

  # Same API, same SDK, just higher limits and dedicated compute
  client = Anthropic(
      auth_token="your-api-key",
      base_url="https://api.subconscious.dev",
  )
  ```
</CodeGroup>

## Pricing

Dedicated endpoint pricing is based on reserved capacity and varies by workload. [Fill out our contact form](https://www.subconscious.dev/product/coding-agents/contact) for a quote.

<Card title="Get in Touch" icon="phone" href="https://www.subconscious.dev/product/coding-agents/contact">
  Fill out our contact form to discuss your dedicated endpoint needs.
</Card>
