Skip to main content
GET
/
v2
/
payments
/
counterparty
/
bank
Retrieve Bank Info
curl --request GET \
  --url https://api.sandbox.solidfi.com/v2/payments/counterparty/bank
{
  "routing_number": "021214189",
  "bank_name": "ConnectOne Bank",
  "type": "aba",
  "payment_methods": [
    "<string>"
  ],
  "address": {
    "line1": "123 Main St",
    "line2": "",
    "city": "New York",
    "state": "NY",
    "country": "US",
    "postal_code": "10001"
  }
}

Query Parameters

type
enum<string>

routing number type - aba or swift

Available options:
aba,
swift
Example:

"aba"

routing_number
string

bank routing number

Example:

"021214189"

Response

Retrieve Bank Info

routing_number
string

routing number of the bank

Example:

"021214189"

bank_name
string

name of the bank

Example:

"ConnectOne Bank"

type
enum<string>

routing number type - aba or swift

Available options:
aba,
swift
Example:

"aba"

payment_methods
string[]

an array of supported payment methods. Example ["ach","wire"]

address
object