---
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, only a few [routing numbers are valid](/documentation/sandbox-test-values#routing-numbers). `110000000` is an example of a Sandbox routing number.

## 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_request_for_payment` 'supported' | 'not_supported', required — This routing number's support for Real-Time Payments Requests for Payment.
    - `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

---

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