Skip to main content
GET
/
v1
/
corridors
List available payment corridors
curl --request GET \
  --url http://localhost:8080/v1/corridors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "cor_cq1234567890abcdef",
      "rail_type": "fiat",
      "source_currency": "USD",
      "dest_currency": "EUR",
      "dest_country": "DE",
      "network": "<string>",
      "provider": "<string>",
      "method": "bank_transfer",
      "active": true,
      "priority": 123,
      "cutoff_time": "<string>",
      "settlement_days": 123,
      "settlement_mins": 123,
      "min_amount": "<string>",
      "max_amount": "<string>",
      "required_confirms": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_... or ak_test_...

Query Parameters

source_currency
string
dest_currency
string
dest_country
string

Response

200 - application/json

List of active corridors

data
object[]