Networks & corridors
List payment link chains
GET
/
collections
/
chains
List payment link chains
curl --request GET \
--url http://localhost:4000/v1/collections/chains \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:4000/v1/collections/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/collections/chains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "success",
"message": "Supported networks fetched",
"data": {
"origins": [
{
"key": "tron",
"network": "Tron",
"addressFormat": "tron",
"tokens": [
"USDT"
]
},
{
"key": "bitcoin",
"network": "Bitcoin",
"addressFormat": "bitcoin",
"tokens": [
"BTC"
]
},
{
"key": "bnb",
"network": "BSC",
"addressFormat": "evm",
"tokens": [
"BNB",
"USDT",
"USDC"
]
},
{
"key": "ethereum",
"network": "Ethereum",
"addressFormat": "evm",
"tokens": [
"ETH",
"USDC",
"USDT"
]
},
{
"key": "base",
"network": "Base",
"addressFormat": "evm",
"tokens": [
"ETH",
"USDC",
"USDT"
]
}
],
"settlements": [
{
"key": "base",
"network": "Base",
"addressFormat": "evm",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"addressFormat": "solana",
"tokens": [
"USDC",
"USDT"
]
}
],
"routing": [
{
"key": "tron",
"network": "Tron",
"token": "USDT",
"settlements": [
{
"key": "base",
"network": "Base",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"tokens": [
"USDC",
"USDT"
]
}
]
},
{
"key": "bitcoin",
"network": "Bitcoin",
"token": "BTC",
"settlements": [
{
"key": "base",
"network": "Base",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"tokens": [
"USDC",
"USDT"
]
}
]
}
]
}
}Authorizations
API key created in the Remitflex Dashboard at dashboard.remitflex.io (rmf_live_... or rmf_test_...).
Key management endpoints require a dashboard JWT and are not part of this reference.
⌘I
List payment link chains
curl --request GET \
--url http://localhost:4000/v1/collections/chains \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('http://localhost:4000/v1/collections/chains', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "http://localhost:4000/v1/collections/chains"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"status": "success",
"message": "Supported networks fetched",
"data": {
"origins": [
{
"key": "tron",
"network": "Tron",
"addressFormat": "tron",
"tokens": [
"USDT"
]
},
{
"key": "bitcoin",
"network": "Bitcoin",
"addressFormat": "bitcoin",
"tokens": [
"BTC"
]
},
{
"key": "bnb",
"network": "BSC",
"addressFormat": "evm",
"tokens": [
"BNB",
"USDT",
"USDC"
]
},
{
"key": "ethereum",
"network": "Ethereum",
"addressFormat": "evm",
"tokens": [
"ETH",
"USDC",
"USDT"
]
},
{
"key": "base",
"network": "Base",
"addressFormat": "evm",
"tokens": [
"ETH",
"USDC",
"USDT"
]
}
],
"settlements": [
{
"key": "base",
"network": "Base",
"addressFormat": "evm",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"addressFormat": "solana",
"tokens": [
"USDC",
"USDT"
]
}
],
"routing": [
{
"key": "tron",
"network": "Tron",
"token": "USDT",
"settlements": [
{
"key": "base",
"network": "Base",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"tokens": [
"USDC",
"USDT"
]
}
]
},
{
"key": "bitcoin",
"network": "Bitcoin",
"token": "BTC",
"settlements": [
{
"key": "base",
"network": "Base",
"tokens": [
"USDC",
"USDT"
]
},
{
"key": "solana",
"network": "Solana",
"tokens": [
"USDC",
"USDT"
]
}
]
}
]
}
}