Skip to main content
POST
/
deliver
/
eligibility
Check if a routing number is eligible for RTP or FedNow
curl --request POST \
  --url https://api-sandbox.orum.io/deliver/eligibility \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Orum-Version: <orum-version>' \
  --data '
{
  "routing_numbers": [
    "<string>"
  ]
}
'
{
  "routing_numbers": [
    {
      "routing_number": "<string>",
      "eligible": true,
      "rtp": true,
      "fednow": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.orum.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

Orum-Version
enum<string>
required

Version of Deliver and Verify APIs. Use v2022-09-21.

Available options:
v2022-09-21

Body

application/json
routing_numbers
string[]
required

9-digit American Bankers Association (ABA) routing number.

Pattern: ^\d{9}$

Response

200 response

routing_numbers
EligibilityRoutingNumber · object[]
required