/api/v1/railsPublished contract, not openList payout methods
Payout rail catalogue with currency, countries served, p50 and p95 delays, business-day rules, cut-off, per-operation limits in minor units, fees and the beneficiary field schema. That schema is what lets you generate the payout form instead of coding it country by country.
Authentication: Authorization: Bearer … See authentication
Parameters
| Field | Type | Description |
|---|---|---|
country | string | ISO 3166-1 alpha-2 filter. |
currency | string | ISO 4217 filter. |
phase | string | live, beta, planned or never. |
limit | integer | Page size, 1 to 100, default 50. |
cursor | string | Opaque cursor returned by the previous call. |
curl -sS 'https://fiatside.com/api/v1/rails?country=BR' \
-H 'Authorization: Bearer sk_live_...'{
"data": [
{
"id": "br_pix",
"slug": "pix",
"name": "PIX",
"kind": "instant_bank",
"currency": "BRL",
"countries": ["BR"],
"phase": "live",
"settlement": { "p50Minutes": 1, "p95Minutes": 10, "businessDaysOnly": false },
"limits": { "minMinor": 1000, "maxMinor": 5000000, "decimals": 2 },
"fees": { "fixedMinor": 0, "bps": 0 },
"fields": [
{ "name": "pixKeyType", "type": "select", "required": true },
{ "name": "pixKey", "type": "text", "required": true, "maxLength": 77 },
{ "name": "taxId", "type": "text", "required": true, "pattern": "^[0-9]{11}$" }
],
"verifiedAt": "2026-09-02"
}
],
"next_cursor": null
}- A closed rail is returned with its phase and reason, not removed from the list. An integration that cannot see why a rail vanished asks its own support.
Possible errors: unauthorized, invalid_request. Full catalogue