Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
curl --request GET \
--url https://production.hifibridge.com/v2/virtual-accounts/settlement-rules \
--header 'Authorization: Bearer <token>'
{
"count": 123,
"rules": [
{
"id": "15c786fb-de7a-520c-a4b3-f312d4a122d2",
"chain": "BASE",
"includeHIFIFee": false,
"rules": [
{
"type": "PERCENTAGE",
"calculationModel": "FIXED",
"value": 0.001,
"tiers": [
{
"min": "1000",
"max": "2000",
"value": 0.0005
}
],
"walletAddress": "0x15FB50680fEB2f726413416665c25f9B397b047b"
}
]
}
],
"nextCursor": "<string>"
}
List all settlement rules available for virtual accounts.
curl --request GET \
--url https://production.hifibridge.com/v2/virtual-accounts/settlement-rules \
--header 'Authorization: Bearer <token>'
{
"count": 123,
"rules": [
{
"id": "15c786fb-de7a-520c-a4b3-f312d4a122d2",
"chain": "BASE",
"includeHIFIFee": false,
"rules": [
{
"type": "PERCENTAGE",
"calculationModel": "FIXED",
"value": 0.001,
"tiers": [
{
"min": "1000",
"max": "2000",
"value": 0.0005
}
],
"walletAddress": "0x15FB50680fEB2f726413416665c25f9B397b047b"
}
]
}
],
"nextCursor": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.