---
title: "Get a gateway policy"
method: GET
path: "/v1/platform/gateway-policies/{id}"
tags: ["gateway-policies"]
---

# Get a gateway policy

`GET /v1/platform/gateway-policies/{id}`

Returns a single gateway policy by id. Cross-org access is
rejected with 404

**Spend tracking:** spend-cap policies include
`current_spend_usd` for the active window so callers can
read per-policy cost without hitting a separate endpoint.
Guard policies leave it null.

## Path parameters

- `id` string, uuid, required

## Response `200`

OK

- GatewayPoliciesGatewayPolicyRecord
  - `action` string
  - `config` object
  - `created_at` string
  - `created_by` string
  - `current_spend_usd` number — CurrentSpendUSD is the spend in the policy's current window. Set for any spend_cap policy regardless of enabled state — disabled policies still surface usage so users can see what would have been counted. Nil for non-spend_cap policies or when the spend lookup failed.
  - `description` string
  - `enabled` boolean
  - `id` string
  - `is_system_generated` boolean
  - `name` string
  - `organization_id` string
  - `parent_policy_id` string — ParentPolicyID is set on materialized children of a default_spend_cap to the default's id, and cleared (NULL) only when an admin Create with the same matchers takes over the materialized row. Update on a child preserves the link; Delete on the parent cascade-soft-deletes every child rather than detaching them.
  - `policy_type` string
  - `priority` integer
  - `subject_matchers` GatewayPoliciesSubjectMatcher[]
    - `key` string
    - `value` string
  - `updated_at` string

## Other responses

- `401` — Unauthorized
- `403` — LLM Gateway not enabled, or caller lacks OrganizationRead
- `404` — policy not found
- `500` — Internal Server Error

---

[API](https://skmtc.net/langchain-ai/apis/langsmith.md) · [All operations](https://skmtc.net/langchain-ai/apis/langsmith/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langchain-ai/langsmith/revisions/a0acb3a6a101/schema)
