---
title: "Create Proxy Route"
method: POST
path: "/api/v1/proxies"
tags: ["proxies"]
---

# Create Proxy Route

`POST /api/v1/proxies`

## Headers

- `Authorization` string, nullable
- `X-Request-ID` string, nullable

## Request body

- ProxyCreate
  - `name` string, nullable
  - `description` string, nullable
  - `system_prompt` string, nullable
  - `intent` string, nullable
  - `source` 'auto' | 'manual'
  - `provider_id` string, uuid, nullable

## Response `201`

Successful Response

- ProxyRead
  - `id` string, uuid, required
  - `created_at` string, date-time, required
  - `updated_at` string, date-time, required
  - `org_id` string, uuid, required
  - `owner_id` string, uuid, nullable, required
  - `name` string, nullable, required
  - `description` string, nullable, required
  - `system_prompt` string, nullable, required
  - `intent` string, nullable, required
  - `rate_limit_rpm` integer, nullable, required
  - `status` 'draft' | 'active', required
  - `source` 'auto' | 'manual', required
  - `provider_id` string, uuid, nullable, required
  - `provider` ProxyProviderSummary, required
    - `id` string, uuid, required
    - `name` string, required
    - `provider` string, required
    - `model` string, nullable, required
  - `proxy_url` string, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/xenovia/apis/controlplane.md) · [All operations](https://skmtc.net/xenovia/apis/controlplane/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xenovia/controlplane/versions/0e6598cbe8a0/schema)
