Skip to main content
GET
/
v1
/
fx
/
exchanges
List FX exchanges
curl --request GET \
  --url https://api.antonpayments.com/v1/fx/exchanges \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "quote_id": "<string>",
      "sell_currency": "<string>",
      "buy_currency": "<string>",
      "sell_amount": "<string>",
      "buy_amount": "<string>",
      "mid_market_rate": "<string>",
      "customer_rate": "<string>",
      "provider": "<string>",
      "status": "completed",
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Merchant API key: ak_live_* (production) or ak_test_* (sandbox).

Query Parameters

limit
integer
default:20

Maximum number of items to return (default 20, max 100).

Required range: x <= 100
cursor
string

Pagination cursor from previous response's next_cursor.

status
enum<string>
Available options:
completed,
pending,
failed
currency
string

Filter by currency (matches either sell or buy currency).

Response

List of exchanges.

data
object[]
required
has_more
boolean
required
next_cursor
string