> ## 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.

# /citilink/products/stores

> List every citilink.ru pickup point that can hand over one product in a given city, with the number of units each one holds right now, the pickup fee and the date the unit arrives, plus the point's address, coordinates, opening hours, phone, kind and delivery partner.

**Price:** 1 credit

**⚠️ Common errors:** 412: No such product on citilink.ru — the code or URL resolves to nothing., 422: Unknown city code — take one from citilink/cities.



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/citilink/products/stores
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/citilink/products/stores:
    post:
      tags:
        - /citilink
      summary: /citilink/products/stores
      description: >-
        List every citilink.ru pickup point that can hand over one product in a
        given city, with the number of units each one holds right now, the
        pickup fee and the date the unit arrives, plus the point's address,
        coordinates, opening hours, phone, kind and delivery partner.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No such product on citilink.ru — the code or
        URL resolves to nothing., 422: Unknown city code — take one from
        citilink/cities.
      operationId: __api_citilink_products_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CitilinkStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CitilinkStoreStock'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CitilinkStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        city:
          type: string
          minLength: 1
          default: msk_cl
        product:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        in_stock_only:
          type: boolean
          default: false
        formats:
          items:
            $ref: '#/components/schemas/CitilinkStoreFormat'
          type: array
          default: []
      type: object
      required:
        - product
        - count
    CitilinkStoreStock:
      properties:
        '@type':
          type: string
          default: CitilinkStoreStock
        id:
          type: string
        store_id:
          type: string
        product_id:
          type: string
        city:
          anyOf:
            - type: string
            - type: 'null'
        city_name:
          anyOf:
            - type: string
            - type: 'null'
        available_count:
          anyOf:
            - type: integer
            - type: 'null'
        delivery_price:
          anyOf:
            - type: number
            - type: 'null'
        delivery_date:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        short_name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        store_city_name:
          anyOf:
            - type: string
            - type: 'null'
        space_id:
          anyOf:
            - type: string
            - type: 'null'
        store_format:
          anyOf:
            - type: string
            - type: 'null'
        store_format_name:
          anyOf:
            - type: string
            - type: 'null'
        sub_format:
          anyOf:
            - type: string
            - type: 'null'
        external_format:
          anyOf:
            - type: string
            - type: 'null'
        is_new:
          anyOf:
            - type: boolean
            - type: 'null'
        services:
          items:
            type: string
          type: array
          default: []
        serving_type:
          anyOf:
            - type: string
            - type: 'null'
        shipping_agent:
          anyOf:
            - type: string
            - type: 'null'
        work_hours:
          anyOf:
            - type: string
            - type: 'null'
        delivery_info:
          anyOf:
            - type: string
            - type: 'null'
        is_passport_required:
          anyOf:
            - type: boolean
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - store_id
        - product_id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    CitilinkStoreFormat:
      type: string
      enum:
        - shop
        - pickup_point
        - partner
    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

````