Skip to main content
Get information about supported blockchain networks.
GET /api/v1/finance/networks Returns details about supported blockchain networks including name, type, chain ID, and native currency. Can be filtered to a specific network or queried for source/destination routing pairs.

Parameters

Query

NameTypeRequiredDescription
networkstringNoFilter by network name (e.g. polygon, ethereum). 4–32 chars.
srcNetworkstringNoSource network for routing queries
dstNetworkstringNoDestination network for routing queries
limitintegerNoNumber of items (default 1000)
offsetintegerNoPagination offset

Request example

curl --request GET 'https://payments.bleepay.com/api/v1/finance/networks?network=polygon' \
  --header 'Content-Type: application/json'

Response

Returns an array of network objects. Network object:
FieldTypeDescription
networkstringNetwork identifier (e.g. polygon)
typestringNetwork type (evm, solana, etc.)
chainIdstringChain ID
nativeCurrencystringNative gas currency symbol
enabledbooleanWhether the network is active

Example response

[
  {
    "network": "polygon",
    "type": "evm",
    "chainId": "137",
    "nativeCurrency": "POL",
    "enabled": true
  }
]