v1
latestOpenAPI 3.0.02026-07-26167441.9 MBList Routings
Lists all routings of an account, optionally filtered by payment method. Each item has the same shape as Retrieve a Routing.
get/routing
Query parameters
account_idstring uuid required
Account to list routings for. Must belong to the organization of your API credentials.
payment_methodstring
Example:CARD
Filter by payment method (e.g., CARD, PIX).
Response
The routings configured on the account, or an empty array if it has none.
Example response
[
{
"id": "r_8f2c1d3e-4b5a-6c7d-8e9f-0a1b2c3d4e5f",
"account_id": "acc-uuid",
"payment_method": "CARD",
"name": "Card routing — Stripe primary, Adyen fallback",
"default_route": {
"steps": [
{
"index": 1,
"provider_id": "STRIPE",
"connection_id": "f1a3c4d5-..."
}
]
},
"condition_sets": [
{
"sort_number": 1,
"name": "High Value US"
}
],
"created_at": "2026-05-12T14:30:00Z",
"updated_at": "2026-05-12T14:30:00Z"
}
]