Skip to main content
GET
/
customers
/
{customerID}
/
fiat_payout_configuration
Get the fiat payout configuration for a customer
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/fiat_payout_configuration \
  --header 'Api-Key: <api-key>'
{
"fiat_payout_configuration": {
"usd": {
"wire": "developer",
"ach": "bridge"
},
"eur": {
"sepa": "bridge"
},
"brl": {
"pix": "payment_provider"
},
"mxn": {
"spei": "payment_provider"
}
}
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

Successful fiat payout configuration response

fiat_payout_configuration
object
required

A nested hash structure representing the fiat payout configuration. The top-level keys are currency codes. Each currency maps to a hash where keys are payment rail codes and values are payout names.

Example:
{
"usd": { "wire": "developer", "ach": "bridge" },
"eur": { "sepa": "bridge" },
"brl": { "pix": "payment_provider" },
"mxn": { "spei": "payment_provider" }
}