Avito Realty API

The Realty API from Avito — 7 operation(s) for realty.

Operations 7

GET /realty/v1/marketPriceCorrespondence/{itemId}/{price} Получение соответствия переданной цены рыночной цене #
POST /realty/v1/report/create/{itemId} Получение аналитического отчета по недвижимости #
POST /core/v1/accounts/{user_id}/items/{item_id}/bookings Заполнение календаря занятости объекта недвижимости #
GET /realty/v1/accounts/{user_id}/items/{item_id}/bookings Получение списка броней по объявлению #
POST /realty/v1/accounts/{user_id}/items/{item_id}/prices Актуализация параметров для выбранных периодов #
POST /realty/v1/items/intervals Заполнение доступности объекта недвижимости с квотами и без #
POST /realty/v1/items/{item_id}/base Установка базовых параметров #

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-realty-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-realty-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 Realty API
  version: '1'
servers:
- url: https://api.avito.ru/
tags:
- name: Realty
paths:
  /realty/v1/marketPriceCorrespondence/{itemId}/{price}:
    get:
      description: 'Получение соответствия переданной цены рыночной цене


        **Данный метод доступен только пользователям с активной подпиской «Лидер» в категории «Недвижимость»**

        '
      operationId: market_price_correspondence_v1
      parameters:
      - description: Идентифиактор объявления
        in: path
        name: itemId
        required: true
        schema:
          type: integer
      - description: Цена
        in: path
        name: price
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  correspondence:
                    description: 'Признак соответствия рыночной цене

                      - below - цена ниже рыночной

                      - normal - цена соответствует рыночной

                      - above - цена выше рыночной'
                    enum:
                    - below
                    - normal
                    - above
                    type: string
                  error:
                    $ref: '#/components/schemas/Error'
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                properties:
                  error:
                    $ref: '#/components/schemas/Error'
                required:
                - error
                type: object
          description: Некорректный запрос
        '401':
          description: Неавторизован
        '403':
          content:
            application/json:
              schema:
                properties:
                  error:
                    $ref: '#/components/schemas/Error'
                required:
                - error
                type: object
          description: Ошибка доступа
        '404':
          content:
            application/json:
              schema:
                properties:
                  error:
                    $ref: '#/components/schemas/Error'
                required:
                - error
                type: object
          description: Не найдено
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    $ref: '#/components/schemas/Error'
                required:
                - error
                type: object
          description: Внутренняя ошибка
      security:
      - ClientCredentials: []
      summary: Получение соответствия переданной цены рыночной цене
      x-rate-limiter:
        default: 60
      tags:
      - Realty
  /realty/v1/report/create/{itemId}:
    post:
      description: 'Получение аналитического отчета по недвижимости


        **Данный метод доступен только пользователям с активной подпиской «Лидер» в категории «Недвижимость»**

        '
      operationId: CreateReportForClassified
      parameters:
      - description: Идентификатор объявления
        in: path
        name: itemId
        required: true
        schema:
          type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  success:
                    format: enum
                    properties:
                      errors:
                        properties:
                          accessDenied:
                            description: Объект не принадлежит агенту
                            type: boolean
                          featureDisabled:
                            description: Фича получения отчета по API недоступна
                            type: boolean
                          invalidItem:
                            description: Неверный идентификатор объявления
                            type: boolean
                          message:
                            description: Сообщение об ошибке
                            type: string
                        type: object
                      success:
                        properties:
                          reportLink:
                            description: Ссылка на аналитический отчет
                            type: string
                        required:
                        - reportLink
                        type: object
                    type: object
                required:
                - success
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                properties:
                  bad-request:
                    $ref: '#/components/schemas/ErrorMessage'
                required:
                - bad-request
                type: object
          description: Некорректный запрос
        '401':
          content:
            application/json:
              schema:
                properties:
                  unauthenticated:
                    $ref: '#/components/schemas/ErrorMessage'
                required:
                - unauthenticated
                type: object
          description: Неавторизован
        '403':
          content:
            application/json:
              schema:
                properties:
                  forbidden:
                    $ref: '#/components/schemas/ErrorMessage'
                required:
                - forbidden
                type: object
          description: Ошибка доступа
        '500':
          content:
            application/json:
              schema:
                properties:
                  internal-error:
                    $ref: '#/components/schemas/ErrorMessage'
                required:
                - internal-error
                type: object
          description: Внутренняя ошибка
      security:
      - ClientCredentials: []
      summary: Получение аналитического отчета по недвижимости
      x-rate-limiter:
        default: 60
      tags:
      - Realty
  /core/v1/accounts/{user_id}/items/{item_id}/bookings:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    - $ref: '#/components/parameters/pathUserId'
    - $ref: '#/components/parameters/pathItemId'
    post:
      description: 'Заполнение календаря занятости объекта недвижимости (для краткосрочной аренды)

        '
      operationId: putBookingsInfo
      requestBody:
        content:
          application/json:
            example:
              bookings:
              - comment: Комментарий
                date_end: '2026-03-24'
                date_start: '2026-03-23'
              - date_end: '2026-03-25'
                date_start: '2026-03-24'
                type: manual
              - date_end: '2026-03-26'
                date_start: '2026-03-25'
                type: booking
              source: pms
            schema:
              $ref: '#/components/schemas/PostCalendarData'
        description: 'Последний день брони доступен для пользователя (открытый конец),

          так, бронь в один день занимается промежутком в два дня.

          Промежутки не должны пересекаться (допустимо совпадение конца одной брони и начала второй в силу открытости).

          При пересечении любого интервала с оплаченной бронью на Авито, будет возвращена ошибка.  Закрыты будут только интервалы без пересечений.

          '
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  result:
                    description: Результат обработки запроса
                    enum:
                    - success
                    type: string
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Bad request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Пользователь не владеет айтемом
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Айтем не найден
        '409':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatesOverlapBookingError'
          description: На заданные даты есть оплаченные брони
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validatingError'
          description: Неверные данные
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Внутренняя ошибка
      security:
      - AuthorizationCode:
        - short_term_rent:write
      - ClientCredentials: []
      summary: Заполнение календаря занятости объекта недвижимости
      tags:
      - Realty
  /realty/v1/accounts/{user_id}/items/{item_id}/bookings:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    - $ref: '#/components/parameters/pathUserId'
    - $ref: '#/components/parameters/pathItemId'
    - $ref: '#/components/parameters/skipError'
    - description: Фильтр, ограничивающий выборку по нижней границе дат, не в прошлом
      in: query
      name: date_start
      required: true
      schema:
        example: '2026-01-01'
        format: date
        type: string
    - description: Фильтр, ограничивающий выборку по верхней границе дат, не в прошлом
      in: query
      name: date_end
      required: true
      schema:
        example: '2026-05-01'
        format: date
        type: string
    - description: Флаг, позволяющий получить неоплаченные брони (возвращаются в статусе pending)
      in: query
      name: with_unpaid
      schema:
        example: true
        type: boolean
    get:
      description: 'Возвращает информацию о бронированиях объекта за весь период.

        '
      operationId: getRealtyBookings
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  bookings:
                    description: Список броней
                    items:
                      $ref: '#/components/schemas/RealtyBooking'
                    type: array
                required:
                - bookings
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Bad request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Пользователь не владеет айтемом
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Айтем не найден
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validatingError'
          description: Неверные данные
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Внутренняя ошибка
      security:
      - AuthorizationCode:
        - short_term_rent:read
      - ClientCredentials: []
      summary: 'Получение списка броней по объявлению

        '
      tags:
      - Realty
  /realty/v1/accounts/{user_id}/items/{item_id}/prices:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    - $ref: '#/components/parameters/pathUserId'
    - $ref: '#/components/parameters/pathItemId'
    - $ref: '#/components/parameters/skipError'
    post:
      description: 'Обновляет параметры (цена за ночь, доплата за гостя, минимальная продолжительность брони) для каждого из переданных диапазонов дат, изменения применяются к каждой дате диапазона. В случае, если на занимаемые даты есть брони в неподтвержденных статусах, то брони переводятся в статус overbook.

        '
      operationId: postRealtyPrices
      requestBody:
        content:
          application/json:
            example:
              prices:
              - date_from: '2026-06-02'
                date_to: '2026-06-14'
                extra_guest_fee: 500
                minimal_duration: 1
                night_price: 1500
              - date_from: '2026-06-15'
                date_to: '2026-06-15'
                extra_guest_fee: 1000
                minimal_duration: 7
                night_price: 5000
            schema:
              $ref: '#/components/schemas/ParamPricesRealty'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  result:
                    description: Результат обработки запроса
                    enum:
                    - success
                    type: string
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Bad request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Пользователь не владеет айтемом
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Айтем не найден
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validatingError'
          description: Неверные данные
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Внутренняя ошибка
      security:
      - AuthorizationCode:
        - short_term_rent:write
      - ClientCredentials: []
      summary: 'Актуализация параметров для выбранных периодов

        '
      tags:
      - Realty
  /realty/v1/items/intervals:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    - $ref: '#/components/parameters/skipError'
    post:
      description: 'Заполнение календаря доступности объекта недвижимости с квотами и без (для краткосрочной аренды)

        '
      operationId: putIntervals
      requestBody:
        content:
          application/json:
            example:
              intervals:
              - date_end: '2024-03-24'
                date_start: '2024-03-23'
                open: 10
              - date_end: '2024-03-25'
                date_start: '2024-03-24'
                open: 2
              item_id: 270000555
              source: pms
            schema:
              $ref: '#/components/schemas/PostCalendarDataV2'
        description: 'Последний день интервала недоступен для пользователя (открытый конец), так, открытость одного дня  указывается промежутком в два дня. Интервалы на год вперед, которые не приходят в запросе, считаются закрытыми. Возможен пустой список во входном запросе: в этом случае считается, что продажи закрыты на год вперед. Промежутки не должны пересекаться (допустимо совпадение конца одного и начала другого). Работает как для объявлений с квотами, так и для обычных объявлений.

          '
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  result:
                    description: Результат обработки запроса
                    enum:
                    - success
                    type: string
                type: object
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Bad request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Пользователь не владеет айтемом
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Айтем не найден
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validatingError'
          description: Неверные данные
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Внутренняя ошибка
      security:
      - AuthorizationCode:
        - short_term_rent:write
      - ClientCredentials: []
      summary: Заполнение доступности объекта недвижимости с квотами и без
      tags:
      - Realty
  /realty/v1/items/{item_id}/base:
    parameters:
    - $ref: '#/components/parameters/authHeader'
    - $ref: '#/components/parameters/pathItemId'
    post:
      description: 'Обновляет базовые параметры: цена за ночь, минимальное количество ночей, доплата за гостя,  количество гостей больше которых активируется опция доплаты за гостя, период бесплатной отмены, параметры мгновенного бронирования (активность, максимальное/минимальное количество дней до заселения), скидки на бронирование.

        '
      operationId: postBaseParams
      requestBody:
        content:
          application/json:
            example:
              discount:
              - percent: 10
                threshold: 3
              - percent: 15
                threshold: 7
              extra_guest_fee: 500
              extra_guest_threshold: 4
              instant:
                active: true
                max_days: 30
                min_days: 3
              minimal_duration: 1
              night_price: 3000
              refund:
                days: 7
            schema:
              $ref: '#/components/schemas/BaseParams'
        required: true
      responses:
        '200':
          description: Успешный ответ
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Bad request
        '403':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Пользователь не владеет айтемом
        '404':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Айтем не найден
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/validatingError'
          description: Неверные данные
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error_2'
          description: Внутренняя ошибка
      security:
      - AuthorizationCode:
        - short_term_rent:write
      - ClientCredentials: []
      summary: 'Установка базовых параметров

        '
      tags:
      - Realty
components:
  schemas:
    validatingError:
      properties:
        error:
          properties:
            code:
              description: Код ошибки
              example: 400
              format: int32
              type: integer
            fields:
              additionalProperties: {}
              description: Информация об ошибке валидации параметров в формате ключ-значение
              type:
              - object
              - 'null'
            message:
              description: Сообщение об ошибке
              example: Validation error
              type: string
          required:
          - code
          - message
          type: object
      type: object
    PostCalendarDataV2:
      description: Информация о доступности объекта на заданные интервалы
      properties:
        intervals:
          description: Список интервалов для выбранного объявления
          items:
            properties:
              date_end:
                description: Дата окончания периода
                example: '2024-04-01'
                format: date
                type: string
              date_start:
                description: Дата начала периода
                example: '2024-03-23'
                format: date
                type: string
              open:
                description: Квота на заданные даты (> 0)
                example: 5
                type: integer
            type: object
          type: array
        item_id:
          description: ID объявления
          example: 270000555
          type: integer
        source:
          description: Название PMS системы
          example: pms
          type:
          - string
          - 'null'
      type: object
    ParamPricesRealty:
      description: Диапазоны дат и соответствующие им ценовые параметры
      properties:
        prices:
          items:
            $ref: '#/components/schemas/ParamPriceItemRealty'
          type: array
      type: object
    PostCalendarData:
      description: Информация о занятости объекта на определённые периоды
      properties:
        bookings:
          description: Список броней для выбранного объекта недвижимости (объявления)
          items:
            properties:
              comment:
                description: Дополнительная информация
                example: Дополнительная информация
                type:
                - string
                - 'null'
              date_end:
                description: Дата окончания периода аренды, не в прошлом
                example: '2026-04-01'
                format: date
                type: string
              date_start:
                description: Дата начала периода аренды, не в прошлом
                example: '2026-03-23'
                format: date
                type: string
              type:
                description: Даты закрыты вручную или по данными другого OTA (manual, booking)
                enum:
                - manual
                - booking
                type:
                - string
                - 'null'
            type: object
          type: array
        source:
          description: Название PMS системы
          example: pms
          type:
          - string
          - 'null'
      type: object
    AvitoBooking:
      description: Оплаченная на Авито бронь
      properties:
        avito_booking_id:
          description: Идентификатор бронирования на Авито
          example: 11111
          format: int64
          type:
          - integer
          - 'null'
        check_in:
          description: Дата заезда гостей
          example: '2026-03-20'
          format: date
          type: string
        check_out:
          description: Дата выезда гостей
          example: '2026-03-27'
          format: date
          type: string
      required:
      - check_in
      - check_out
      type: object
    DatesOverlapBookingError:
      properties:
        error:
          properties:
            code:
              description: Код ошибки
              example: 409
              format: int32
              type: integer
            conflicts:
              description: Список периодов, конфликтующих с оплаченными бронями на Авито
              items:
                $ref: '#/components/schemas/ConflictedInterval'
              type: array
            message:
              description: Сообщение об ошибке
              example: error
              type: string
          required:
          - code
          - message
          - conflicts
          type: object
      type: object
    Error:
      description: Ошибка
      properties:
        code:
          description: Код ошибки
          type: integer
        isTemporary:
          description: Признак того, что ошибка временная (можно попробовать повторить запрос через некоторое время)
          type:
          - boolean
          - 'null'
        message:
          description: Сообщение
          type: string
      required:
      - code
      - message
      type: object
    RealtyBooking:
      description: Информация о бронировании
      properties:
        avito_booking_id:
          description: Идентификатор бронирования на Авито
          example: 11111
          type: integer
        base_price:
          description: Стоимость проживания на весь срок бронирования
          example: 8000
          type: integer
        check_in:
          description: Дата заезда гостей
          example: '2026-08-01'
          format: date
          type: string
        check_out:
          description: Дата выезда гостей
          example: '2026-08-04'
          format: date
          type: string
        contact:
          description: Контактная информация гостя
          properties:
            email:
              description: Контактный email
              example: guest_email@domain.com
              type: string
            name:
              description: Имя гостя
              example: Иван
              type: string
            phone:
              description: Номер телефона в 10-ти значном формате (только цифры)
              example: '9997770000'
              type: string
          required:
          - name
          - email
          type: object
        guest_count:
          description: Количество гостей
          example: 1
          type: integer
        nights:
          description: Количество ночей
          example: 3
          type: integer
        safe_deposit:
          description: Сумма внесённой предоплаты
          properties:
            owner_amount:
              description: Сумма, которую получит владелец объекта
              example: 4500
              type: integer
            tax:
              description: Комиссия Авито
              example: 500
              type: integer
            total_amount:
              description: Фактическая сумма предоплаты
              example: 5000
              type: integer
          type: object
        status:
          description: Статус брони
          enum:
          - active
          - canceled
          - pending
          type: string
      type: object
    ConflictedInterval:
      description: Период, конфликтующий с оплаченными бронями на Авито
      properties:
        bookings:
          description: Список оплаченных броней на Авито, конфликтующих с периодом
          items:
            $ref: '#/components/schemas/AvitoBooking'
          type: array
        interval:
          description: Период аренды из запроса
          properties:
            date_end:
              description: Дата окончания периода аренды
              example: '2026-04-01'
              format: date
              type: string
            date_start:
              description: Дата начала периода аренды
              example: '2026-03-23'
              format: date
              type: string
          required:
          - date_start
          - date_end
          type: object
      required:
      - interval
      - bookings
      type: object
    Error_2:
      properties:
        error:
          properties:
            code:
            

# --- truncated at 32 KB (40 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/avito/refs/heads/main/openapi/avito-realty-api-openapi.yml