Skip to main content
GET
/
v1
/
corridors
List available corridors
curl --request GET \
  --url https://api.antonpayments.com/v1/corridors \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "rail_type": "fiat",
      "currency": "<string>",
      "country": "<string>",
      "network": "<string>",
      "provider": "<string>",
      "method": "<string>",
      "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_* (production) or ak_test_* (sandbox).

Query Parameters

currency
string

Filter by destination currency.

country
string

Filter by destination country (ISO 3166-1 alpha-2).

Response

List of active corridors.

data
object[]
required