> ## Documentation Index
> Fetch the complete documentation index at: https://yuno-3979e326-2026-05-13-universal-sdk-proposal.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve a Routing

> Returns the routing's current live configuration.

Returns the routing's current live configuration.

### Path Parameters

<ParamField path="routing_id" type="string" required>
  The id returned by [Create a Routing](/reference/organizations/routing/create-routing). Must belong to the account your API key is scoped to.
</ParamField>

### Response

<ResponseField name="id" type="string">
  Unique identifier for the routing.
</ResponseField>

<CodeGroup>
  ```bash cURL theme={null}
  curl --request GET \
       --url https://api.y.uno/v1/routing/{routing_id} \
       --header 'private-secret-key: <YOUR_SECRET_KEY>' \
       --header 'public-api-key: <YOUR_PUBLIC_KEY>'
  ```

  ```json Response Example theme={null}
  {
    "id": "r_8f2c1d3e-4b5a-6c7d-8e9f-0a1b2c3d4e5f",
    "account_code": "acc-uuid",
    "payment_method": "CARD",
    "name": "Card routing",
    "default_route": {
      "steps": [
        { "index": 1, "provider_id": "STRIPE", "connection_id": "f1a3c4d5-..." }
      ]
    },
    "created_at": "2026-05-12T14:30:00Z",
    "updated_at": "2026-05-12T14:30:00Z"
  }
  ```
</CodeGroup>

### Errors

| HTTP  | `code`               | When                                                        |
| ----- | -------------------- | ----------------------------------------------------------- |
| `404` | `ROUTING_NOT_FOUND`  | Unknown `routing_id`, or id belongs to a different account. |
| `403` | `INSUFFICIENT_SCOPE` | API key missing `routing:read`.                             |


## OpenAPI

````yaml openapi/organizations/routing/retrieve-routing.json GET /routing/{routing_id}
openapi: 3.1.0
info:
  title: Routing API - Retrieve
  version: 1.0.0
servers:
  - url: https://api-sandbox.y.uno/v1
security:
  - sec0: []
    sec1: []
paths:
  /routing/{routing_id}:
    get:
      summary: Retrieve a Routing
      description: Returns the routing's current live configuration.
      operationId: retrieve-routing
      parameters:
        - name: routing_id
          in: path
          required: true
          schema:
            type: string
            format: uuid
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                  account_code:
                    type: string
                  payment_method:
                    type: string
                  name:
                    type: string
                  default_route:
                    type: object
                  created_at:
                    type: string
                    format: date-time
                  updated_at:
                    type: string
                    format: date-time
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: PUBLIC-API-KEY
      x-default: <Your PUBLIC-API-KEY>
    sec1:
      type: apiKey
      in: header
      name: PRIVATE-SECRET-KEY
      x-default: <Your PRIVATE-SECRET-KEY>

````