Skip to main content
GET
/
fee-tiers
Lista fee tiers do merchant
curl --request GET \
  --url https://api.astronpay.co/api/v1/fee-tiers \
  --header 'x-api-key: <api-key>' \
  --header 'x-api-secret: <api-key>'
[
  {
    "id": "uuid",
    "orderType": "PAYIN",
    "minVolumeBrl": 0,
    "maxVolumeBrl": 10000,
    "platformFeePercentage": 0.005,
    "merchantFeePercentage": 0.01,
    "totalFeePercentage": 0.015
  },
  {
    "id": "uuid",
    "orderType": "PAYIN",
    "minVolumeBrl": 10000,
    "maxVolumeBrl": null,
    "platformFeePercentage": 0.004,
    "merchantFeePercentage": 0.008,
    "totalFeePercentage": 0.012
  }
]

Authorizations

x-api-key
string
header
required
x-api-secret
string
header
required

Query Parameters

orderType
enum<string>
Available options:
PAYIN,
PAYOUT

Response

OK

id
string<uuid>
orderType
enum<string>
Available options:
PAYIN,
PAYOUT
minVolumeBrl
number
Example:

0

maxVolumeBrl
number | null
Example:

10000

platformFeePercentage
number
Example:

0.005

merchantFeePercentage
number
Example:

0.01

totalFeePercentage
number
Example:

0.015