> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /avito/items

> Get full Avito listing details by item ID (or listing URL): title, price (RUB), description, specification params, images, location and coordinates, category, view counts and seller with rating.

**Price:** 20 credits

**⚠️ Common errors:** 412: Item not found (well-formed but nonexistent/removed item ID)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/avito/items
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/avito/items:
    post:
      tags:
        - /avito
      summary: /avito/items
      description: >-
        Get full Avito listing details by item ID (or listing URL): title, price
        (RUB), description, specification params, images, location and
        coordinates, category, view counts and seller with rating.


        **Price:** 20 credits


        **⚠️ Common errors:** 412: Item not found (well-formed but
        nonexistent/removed item ID)
      operationId: __api_avito_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AvitoItemsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AvitoItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AvitoItemsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    AvitoItem:
      properties:
        '@type':
          type: string
          default: AvitoItem
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: RUB
        params:
          additionalProperties:
            type: string
          type: object
          default: {}
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        address:
          anyOf:
            - type: string
            - type: 'null'
        location_id:
          anyOf:
            - type: string
            - type: 'null'
        coords:
          anyOf:
            - $ref: '#/components/schemas/AvitoCoords'
            - type: 'null'
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        today_view_count:
          anyOf:
            - type: integer
            - type: 'null'
        posted_label:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        seller:
          anyOf:
            - $ref: '#/components/schemas/AvitoItemSeller'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    AvitoCoords:
      properties:
        '@type':
          type: string
          default: AvitoCoords
        lat:
          anyOf:
            - type: number
            - type: 'null'
        lng:
          anyOf:
            - type: number
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    AvitoItemSeller:
      properties:
        '@type':
          type: string
          default: AvitoItemSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        is_company:
          type: boolean
          default: false
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````