Avito Tariff API

API для работы с Тарифами

Operations 1

GET /tariff/info/1 Информация по тарифу #

Documentation

📖
Documentation
https://developers.avito.ru/api-catalog/accounts-hierarchy/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/ads/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/auction/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/auth/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/autoload/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/autostrategy/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/autoteka/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/avito-promo/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/calltracking/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/cpa/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/cpxpromo/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/delivery-sandbox/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/item/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/job/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/messenger/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/order-management/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/promotion/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/ratings/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/realty-reports/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/sbc-gateway/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/stock-management/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/str/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/tariff/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/trxpromo/documentation
📖
Documentation
https://developers.avito.ru/api-catalog/user/documentation

Specifications

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/avito-tariff-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

avito-tariff-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: supportautoload@avito.ru
  description: 'API для взаимодействия с иерархией аккаунтов в Авито

    **Авито API для бизнеса предоставляется согласно [Условиям использования](https://www.avito.ru/legal/pro_tools/public-api).**

    '
  title: Иерархия Аккаунтов Access Tariff API
  version: '1'
servers:
- url: https://api.avito.ru/
tags:
- description: 'API для работы с Тарифами

    '
  name: Tariff
  x-displayName: Tariff
paths:
  /tariff/info/1:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    get:
      description: 'Получение информации по тарифу.


        **Внимание:** информация доступна только для тарифов в категории "Транспорт". **Тариф должен быть не "СРА"**

        '
      operationId: getTariffInfo
      responses:
        '200':
          content:
            application/json:
              example:
                current:
                  bonus: 34432
                  closeTime: 1616589821
                  isActive: true
                  level: Тариф «Максимальный +»
                  packages:
                  - categories:
                    - name: Автомобили
                      subCategories:
                      - С пробегом
                    locations:
                    - Санкт-Петербург и Ленинградская область
                    priceConditions:
                    - categoryName: От 500 000 до 1 000 000
                      originalPrice: 88001
                      price: 80200
                      sort: 1
                      total: 140
                    remain: 105
                    total: 140
                  price:
                    originalPrice: 128441
                    price: 114777
                  startTime: 1613997821
                scheduled:
                  bonus: 36696
                  closeTime: null
                  isActive: false
                  level: Тариф «Максимальный +»
                  packages:
                  - categories:
                    - name: Автомобили
                      subCategories:
                      - С пробегом
                    locations:
                    - Санкт-Петербург и Ленинградская область
                    priceConditions:
                    - categoryName: От 500 000 до 1 000 000
                      originalPrice: 81000
                      price: 75200
                      sort: 1
                      total: 151
                    remain: 151
                    total: 151
                  price:
                    originalPrice: 137980
                    price: 122321
                  startTime: 1616589821
              schema:
                $ref: '#/components/schemas/TariffInfo'
          description: Успешный ответ
        '401':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/authError'
          description: Требуется аутентификация
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/notFoundError'
          description: Тариф не найден
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/serviceError'
          description: Внутренняя ошибка метода API
      security:
      - ClientCredentials: []
      summary: Информация по тарифу
      tags:
      - Tariff
components:
  parameters:
    authHeader:
      description: Токен для авторизации
      in: header
      name: Authorization
      required: true
      schema:
        example: Bearer ACCESS_TOKEN
        type: string
  schemas:
    TariffInfo:
      description: Информация по текущему и запланированному контракту
      properties:
        current:
          $ref: '#/components/schemas/TariffContract'
        scheduled:
          $ref: '#/components/schemas/TariffContract'
      type: object
    TariffContract:
      properties:
        bonus:
          description: Количество бонусов на продвижение по тарифу
          type: integer
        closeTime:
          description: Дата и время окончания в формате Unix time. Для неактивных тарифов значение поля будет null
          example: 1616589821
          type: integer
        isActive:
          description: Признак активности
          example: true
          type: boolean
        level:
          description: Уровень тарифа
          example: Тариф «Максимальный +»
          type: string
        packages:
          description: Пакеты размещений, доступные в рамках тарифа
          items:
            $ref: '#/components/schemas/TariffContractPackage'
          type: array
        price:
          description: Стоимость тарифа
          properties:
            originalPrice:
              description: Цена тарифа без учёта скидки
              type: number
            price:
              description: Цена тарифа со скидкой
              type: number
          type: object
        startTime:
          description: Дата и время начала в формате Unix time
          example: 1613997821
          type: integer
    notFoundError:
      properties:
        error:
          properties:
            code:
              description: Код ошибки
              example: 404
              format: int32
              type: integer
            message:
              description: Сообщение об ошибке
              example: Not found
              type: string
          required:
          - code
          - message
          type: object
      type: object
    TariffContractPackage:
      properties:
        categories:
          description: Доступные категории для размещений из пакета
          items:
            properties:
              name:
                description: Название категории
                example: Автомобили
                type: string
              subCategories:
                description: 'Список выбранных подкатегорий.

                  Если категория выбрана целиком, со всеми подкатегориями, здесь будет пустой массив.

                  '
                items:
                  example: С пробегом
                  type: string
                type: array
            type: object
          type: array
        locations:
          description: Доступные локации для размещений из пакета
          items:
            example: Санкт-Петербург и Ленинградская область
            type: string
          type: array
        priceConditions:
          description: Ценовая группа
          items:
            properties:
              categoryName:
                description: Название ценовой группы
                type: string
              originalPrice:
                description: Стоимость в ценовой группе без учёта скидки
                type: number
              price:
                description: Стоимость в ценой группе со скидкой
                type: number
              sort:
                description: Порядок сортировки ценовых групп
                type: integer
              total:
                description: Количество размещений в ценовой группе
                type: integer
            type: object
          type: array
        remain:
          description: Оставшееся число размещений в пакете
          type: integer
        total:
          description: Размер пакета
          type: integer
      type: object
    serviceError:
      properties:
        error:
          properties:
            code:
              description: Код ошибки
              example: 500
              format: int32
              type: integer
            message:
              description: Описание ошибки
              example: Error while processing request. Please, contact support
              type: string
          required:
          - code
          - message
          type: object
      type: object
    authError:
      properties:
        error:
          properties:
            code:
              description: Код ошибки
              example: 401
              format: int32
              type: integer
            message:
              description: Сообщение об ошибке
              example: Unauthorized
              type: string
          required:
          - code
          - message
          type: object
      type: object
  securitySchemes:
    AuthorizationCode:
      description: Это API использует OAuth 2 с механизмом authorization_code. Используйте его для доступа к данным других пользователей при разработке стороннего приложения. [Подробнее](/api-catalog/auth/documentation#tag/ApplicationAccess)
      flows:
        authorizationCode:
          authorizationUrl: https://avito.ru/oauth
          scopes:
            ah:access: Взаимодействие с иерархией аккаунтов
          tokenUrl: https://api.avito.ru/token
      type: oauth2
    ClientCredentials:
      description: Это API использует OAuth 2 с механизмом client_credentials. Используйте его для доступа к возможностям своей личной учетной записи. [Подробнее](#tag/Access)
      flows:
        clientCredentials:
          scopes: {}
          tokenUrl: https://api.avito.ru/token
      type: oauth2