REST API DOCS
Client APIFees and Payments

Fees. Tariffs

GET
/backend/api/v1/fees/tariffs/

This API is responsible to get a list of fees

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Response Body

application/json

curl -X GET "https://example.com/backend/api/v1/fees/tariffs/"
{  "message": "success",  "code": 200,  "data": [    {      "fee_price": {        "name": "Nonprofessional",        "key": "nonprofessional",        "description": "Nonprofessional",        "period_type": "month"      },      "fee_tariff": {        "name": "Symbol Registry",        "key": "symbol_registry",        "description": "Symbol Registry Description"      },      "description": null,      "value": "8.0000000000000000"    },    {      "fee_price": {        "name": "Nonprofessional",        "key": "nonprofessional",        "description": "Nonprofessional",        "period_type": "month"      },      "fee_tariff": {        "name": "Company Profile",        "key": "company_profile",        "description": "Company Profile Description"      },      "description": null,      "value": "1.0000000000000000"    },    {      "fee_price": {        "name": "Nonprofessional",        "key": "nonprofessional",        "description": "Nonprofessional",        "period_type": "month"      },      "fee_tariff": {        "name": "Last Sale",        "key": "last_sale",        "description": "Last Sale Description"      },      "description": null,      "value": "6.0000000000000000"    },    {      "fee_price": {        "name": "Nonprofessional",        "key": "nonprofessional",        "description": "Nonprofessional",        "period_type": "month"      },      "fee_tariff": {        "name": "Best Bid Best Ask Price",        "key": "bbo",        "description": "Best Bid Best Ask Price Description"      },      "description": null,      "value": "3.0000000000000000"    },    {      "fee_price": {        "name": "Professional",        "key": "professional",        "description": "Professional",        "period_type": "month"      },      "fee_tariff": {        "name": "Symbol Registry",        "key": "symbol_registry",        "description": "Symbol Registry Description"      },      "description": null,      "value": "5.0000000000000000"    },    {      "fee_price": {        "name": "Professional",        "key": "professional",        "description": "Professional",        "period_type": "month"      },      "fee_tariff": {        "name": "Company Profile",        "key": "company_profile",        "description": "Company Profile Description"      },      "description": null,      "value": "4.0000000000000000"    },    {      "fee_price": {        "name": "Professional",        "key": "professional",        "description": "Professional",        "period_type": "month"      },      "fee_tariff": {        "name": "Last Sale",        "key": "last_sale",        "description": "Last Sale Description"      },      "description": null,      "value": "2.0000000000000000"    },    {      "fee_price": {        "name": "Professional",        "key": "professional",        "description": "Professional",        "period_type": "month"      },      "fee_tariff": {        "name": "Best Bid Best Ask Price",        "key": "bbo",        "description": "Best Bid Best Ask Price Description"      },      "description": null,      "value": "7.0000000000000000"    }  ]}