---
title: "List Routing Numbers"
method: GET
path: "/routing_numbers"
---

# List Routing Numbers

`GET /routing_numbers`

You can use this API to confirm if a routing number is valid, such as when a user is providing you with bank account details. Since routing numbers uniquely identify a bank, this will always return 0 or 1 entry. In Sandbox, the only valid routing number for this method is 110000000.

## Query parameters

- `cursor` string — Return the page of entries after this one.
- `limit` integer — Limit the size of the list that is returned. The default (and maximum) is 100 objects.
- `routing_number` string, required — Filter financial institutions by routing number.

## Response `200`

Routing Number List

- RoutingNumberList — A list of Routing Number objects.
  - `data` RoutingNumber[], required — The contents of the list.
    - `ach_transfers` 'supported' | 'not_supported', required — This routing number's support for ACH Transfers.
    - `fednow_transfers` 'supported' | 'not_supported', required — This routing number's support for FedNow Transfers.
    - `name` string, required — The name of the financial institution belonging to a routing number.
    - `real_time_payments_transfers` 'supported' | 'not_supported', required — This routing number's support for Real-Time Payments Transfers.
    - `routing_number` string, required — The nine digit routing number identifier.
    - `type` 'routing_number', required — A constant representing the object's type. For this resource it will always be `routing_number`.
    - `wire_transfers` 'supported' | 'not_supported', required — This routing number's support for Wire Transfers.
  - `next_cursor` string, nullable, required — A pointer to a place in the list. Pass this as the `cursor` parameter to retrieve the next page of results. If there are no more results, the value will be `null`.

## Other responses

- `4XX` — Error
- `5XX` — Error

## Changes

- **2026-04-15** `8976b540ed44` — 1 breaking
  - added the pattern `^[0-9]*$` to the `query` request parameter `routing_number`

[Change history](https://skmtc.dev/increase/apis/increase-api/changes/routing_numbers/get.md)

---

[API](https://skmtc.dev/increase/apis/increase-api.md) · [All operations](https://skmtc.dev/increase/apis/increase-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/increase/increase-api/revisions/22125d715935/schema)
