---
title: "Get Routing Strategy"
method: GET
path: "/routing-strategies/{id}"
tags: ["Routing Strategies"]
---

# Get Routing Strategy

`GET /routing-strategies/{id}`

Returns one routing strategy by id with its name, tags, channels, and the routing rules that decide provider order and fallback.

## Path parameters

- `id` string, required

## Response `200`

- RoutingStrategyGetResponse — Full routing strategy entity returned by GET.
  - `id` string, required — The routing strategy ID (rs_ prefix).
  - `name` string, required — Human-readable name.
  - `description` string, nullable — Description of the routing strategy.
  - `tags` string[], nullable — Tags for categorization.
  - `routing` MessageRouting, required
    - `method` 'all' | 'single', required
    - `channels` MessageRoutingChannel[], required
      - union
        - string
        - MessageRouting — recursive
  - `channels` MessageChannels, required
  - `providers` MessageProviders, required
  - `created` integer, required — Epoch milliseconds when the strategy was created.
  - `creator` string, required — User ID of the creator.
  - `updated` integer, nullable — Epoch milliseconds of last update.
  - `updater` string, nullable — User ID of the last updater.

## Other responses

- `404` — Not Found

---

[API](https://skmtc.net/trycourier/apis/courier.md) · [All operations](https://skmtc.net/trycourier/apis/courier/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/trycourier/courier/versions/04f69fbf96a5/schema)
