---
title: "Get a route"
method: GET
path: "/routes/{id}"
tags: ["Route"]
---

# Get a route

`GET /routes/{id}`

Returns the details of the route for the given ID.

## Path parameters

- `id` string, required

## Response `200`

The route details.

- RouteManagerRoute
  - `id` string, uuid — The unique identifier of the route. Returned from the `POST /routes` or `GET /routes` response.
  - `customer_id` string, uuid — The unique identifier of the customer who owns this route. Returned from the `GET /customers` response.
  - `name` string — The name of the route.
  - `detail` string — The details about the route.
  - `provider_id` string, uuid — The unique identifier of the provider used for this route. Returned from the `GET /providers` response.
  - `priority` integer — The priority of the route, used for routing decisions.
  - `target` string — The target destination for the route (e.g., country code or 'all').
  - `tm_create` string, date-time — The creation timestamp.
  - `tm_update` string, date-time — The last update timestamp.
  - `tm_delete` string, date-time — The deletion timestamp.

## Other responses

- `400` — Invalid request (INVALID_ARGUMENT).
- `401` — Authentication required (UNAUTHENTICATED).
- `403` — Insufficient permission (PERMISSION_DENIED).
- `404` — Resource not found (NOT_FOUND).
- `500` — Internal error (INTERNAL).

---

[API](https://skmtc.net/voipbin/apis/voipbin-api.md) · [All operations](https://skmtc.net/voipbin/apis/voipbin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/voipbin/voipbin-api/versions/79e779080bcc/schema)
