---
title: Manage routes
description: Create, list, and retrieve Cinderlane routes through the v1 API.
url: https://pr-6-df95adf6d023.thally.app/guides/routes
---

# Manage routes

Create, list, and retrieve Cinderlane routes through the v1 API.

## Create a route

Send `POST /v1/routes` with a `name` and HTTPS `destination`. The response is a
route object with an `rte_` identifier and ISO 8601 `createdAt` timestamp.

## List routes

Call `GET /v1/routes`. The response shape is `{ data, nextCursor }`;
`nextCursor` is `null` when no additional page exists.

## Retrieve a route

Call `GET /v1/routes/{routeId}`. An unknown route returns `404` with
`{ "error": "not_found" }`.