Skip to main content
GET
/
accounts
/
{account_id}
/
payment-networks
List Payment Networks for an Account
curl --request GET \
  --url https://api.meow.com/v1/accounts/{account_id}/payment-networks \
  --header 'x-api-key: <api-key>'
{
  "paymentNetworks": [
    {
      "type": "US_ACH",
      "transferIn": true,
      "transferOut": true,
      "bankId": "<string>",
      "identifier": "<string>",
      "network": "ARBITRUM",
      "bankName": "<string>",
      "bankAddress": "<string>",
      "beneficiaryName": "<string>",
      "beneficiaryAddress": "<string>"
    }
  ],
  "page": {
    "nextOffset": "qwer123454q2f"
  }
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Path Parameters

account_id
string
required

The ID of the account.

Query Parameters

offset
string | null
limit
integer | null

Response

Successful Response

paymentNetworks
AccountPaymentNetwork · object[]
required

Array of payment networks. Returns an empty array if this information isn't available. Not all deposit accounts support ACH transfers. For example, a prepaid debit card account doesn't support ACH.

Examples:
[
{
"bankId": 10088889,
"identifier": "1111222233335820",
"transferIn": true,
"transferOut": true,
"type": "US_ACH"
}
]
[
{
"bankId": 10088889,
"identifier": "1111222233335820",
"transferIn": true,
"transferOut": true,
"type": "US_ACH"
},
{
"identifier": "0x1234567890abcdef1234567890abcdef12345678",
"network": "ETHEREUM",
"transferIn": true,
"transferOut": true,
"type": "USDC"
}
]
[
{
"identifier": "8xDc123456789abcdef123456789abcdef123456789abcdef",
"network": "SOLANA",
"transferIn": true,
"transferOut": true,
"type": "USDC"
}
]
page
PageMetadata · object

Metadata for pagination