Skip to main content
GET
/
v1
/
pricing
List pricing plans
curl --request GET \
  --url https://api.antonpayments.com/v1/pricing \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "active": true,
      "source_currency": "<string>",
      "dest_currency": "<string>",
      "dest_country": "<string>",
      "method": "<string>",
      "fee_type": "fixed",
      "fixed_fee": "<string>",
      "fixed_currency": "<string>",
      "percentage_fee": "<string>",
      "min_fee": "<string>",
      "max_fee": "<string>",
      "priority": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_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).

Response

List of pricing plans.

data
object[]
required
has_more
boolean
required
next_cursor
string