GET/routing_numbers

List routing numbers

Lists financial institutions matching a routing number. Supply the required routing_number to check whether it is valid; the result contains zero or one entry because each routing number identifies a bank.

3 parameters
cursorstringoptional
Returns the page of entries after this cursor.
limitintegeroptional
Maximum number of entries to return, from 1 to 100. Defaults to 100 when omitted.
Default:100
routing_numberstringrequired
The routing number to filter financial institutions by. Must be exactly 9 digits.

3 status codes
200Returns a list containing zero or one routing number object, along with `next_cursor` for retrieving a subsequent page.
dataarray<RoutingNumber>required
The contents of the list.
next_cursorstringrequired
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`.
4XXReturned when the request results in a client error.
5XXReturned when the request results in a server error.

Error handling

routing_number is required and must contain exactly 9 digits. limit must be at least 1 and defaults to 100 when omitted; use cursor to continue through the results.