Get tariff
Pricing types
Each tariff has apricing_type field that indicates how the price is calculated:
Standard pricing (pricing_type: "standard")
Price is calculated as: base_price / count * quantity * duration * volume_discount * personal_discount
Use the discounts field to get volume discount tiers.
Graduated pricing (pricing_type: "graduated")
Price is a fixed amount based on quantity thresholds. The graduated_prices field contains an object where keys are quantity thresholds and values are prices with all discounts already applied.
For example, if graduated_prices is {"0": 135, "101": 180, "201": 270}:
- Ordering 50 units costs 135 per hour
- Ordering 150 units costs 180 per hour
- Ordering 250 units costs 270 per hour
graduated_prices values already include your personal discount and any active promotions. The discounts field is not applicable for graduated pricing tariffs.Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
The language of the response
en, ru Path Parameters
The ID of the tarif
Query Parameters
Additional data to include in the response
panel "panel"
Response
OK
The ID of the tarif
1
The title of the tarif (localized)
"AI Chatbot"
Description lines (localized)
["Up to 350 chatbots", "AI-powered chat"]Quantity info. For custom_count tariffs returns {min, max}, otherwise a single integer.
100
The calculated price (with all discounts applied). For standard pricing — price for default quantity. For graduated pricing — price for the minimum tier.
135
The group_id of the tarif
"ai_chatbots"
Whether the tarif supports hourly duration selection
true
Pricing model. standard — price is calculated as (base_price / count * quantity * duration * discounts). graduated — fixed price per quantity tier * duration * discounts.
standard, graduated "graduated"
Graduated pricing tiers with discounts applied. null for standard pricing tariffs.
{ "0": 135, "101": 180, "201": 270 }Volume discount tiers (quantity threshold → discount percentage). Only applicable for standard pricing.
{ "1": 0, "500": 10, "1000": 20 }Whether the tarif supports panel
true