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

# /yandexmaps/organizations/search

> Search Yandex Maps organizations by query or category within a geo area: organization cards with title, rating, categories, address, coordinates, working hours and features, filterable by rating, price band, open-now, good-place, photos and extra category-specific filters, ordered by relevance or by rating.

**Price:** 20 credits per 20 results



## OpenAPI

````yaml /openapi/local-places.json post /api/yandexmaps/organizations/search
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/yandexmaps/organizations/search:
    post:
      tags:
        - /yandexmaps
      summary: /yandexmaps/organizations/search
      description: >-
        Search Yandex Maps organizations by query or category within a geo area:
        organization cards with title, rating, categories, address, coordinates,
        working hours and features, filterable by rating, price band, open-now,
        good-place, photos and extra category-specific filters, ordered by
        relevance or by rating.


        **Price:** 20 credits per 20 results
      operationId: __api_yandexmaps_organizations_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YandexMapsSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YandexMapsOrganization'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YandexMapsSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        text:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        geo:
          type: string
          default: 213/moscow
        latitude:
          anyOf:
            - type: number
              maximum: 90
              minimum: -90
            - type: 'null'
        longitude:
          anyOf:
            - type: number
              maximum: 180
              minimum: -180
            - type: 'null'
        zoom:
          anyOf:
            - type: integer
              maximum: 21
              minimum: 1
            - type: 'null'
        rating_threshold:
          anyOf:
            - $ref: '#/components/schemas/YandexMapsRatingThreshold'
            - type: 'null'
        price_category:
          anyOf:
            - $ref: '#/components/schemas/YandexMapsPriceCategory'
            - type: 'null'
        open_now:
          type: boolean
          default: false
        good_place:
          type: boolean
          default: false
        has_photo:
          type: boolean
          default: false
        sort:
          $ref: '#/components/schemas/YandexMapsSearchSort'
          default: default
        filters:
          anyOf:
            - additionalProperties:
                anyOf:
                  - type: string
                  - type: boolean
              type: object
            - type: 'null'
      type: object
      required:
        - text
        - count
    YandexMapsOrganization:
      properties:
        '@type':
          type: string
          default: YandexMapsOrganization
        id:
          type: string
        alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/YandexMapsCategory'
          type: array
          default: []
        phones:
          items:
            type: string
          type: array
          default: []
        website:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        full_address:
          anyOf:
            - type: string
            - type: 'null'
        additional_address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        photo_count:
          anyOf:
            - type: integer
            - type: 'null'
        photos:
          items:
            type: string
          type: array
          default: []
        working_status:
          anyOf:
            - type: string
            - type: 'null'
        working_time_text:
          anyOf:
            - type: string
            - type: 'null'
        is_open_now:
          anyOf:
            - type: boolean
            - type: 'null'
        working_hours:
          items:
            $ref: '#/components/schemas/YandexMapsWorkingHours'
          type: array
          default: []
        features:
          items:
            $ref: '#/components/schemas/YandexMapsFeature'
          type: array
          default: []
        metro:
          items:
            $ref: '#/components/schemas/YandexMapsNearbyPlace'
          type: array
          default: []
        stops:
          items:
            $ref: '#/components/schemas/YandexMapsNearbyPlace'
          type: array
          default: []
        links:
          items:
            $ref: '#/components/schemas/YandexMapsLink'
          type: array
          default: []
        awards:
          items:
            type: string
          type: array
          default: []
        chain:
          anyOf:
            - type: string
            - type: 'null'
        is_verified:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YandexMapsRatingThreshold:
      type: string
      enum:
        - gt3.0
        - gt3.5
        - gt4.0
        - gt4.5
        - gt4.7
        - gt4.9
    YandexMapsPriceCategory:
      type: string
      enum:
        - price_cheap
        - price_reasonable
        - price_expensive
        - price_very_expensive
    YandexMapsSearchSort:
      type: string
      enum:
        - default
        - rating
    YandexMapsCategory:
      properties:
        '@type':
          type: string
          default: YandexMapsCategory
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    YandexMapsWorkingHours:
      properties:
        '@type':
          type: string
          default: YandexMapsWorkingHours
        day:
          type: string
        is_open:
          type: boolean
          default: false
        intervals:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - day
    YandexMapsFeature:
      properties:
        '@type':
          type: string
          default: YandexMapsFeature
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        value:
          anyOf:
            - type: boolean
            - type: string
            - items:
                type: string
              type: array
            - type: 'null'
        is_important:
          type: boolean
          default: false
      type: object
      required:
        - id
    YandexMapsNearbyPlace:
      properties:
        '@type':
          type: string
          default: YandexMapsNearbyPlace
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        type:
          anyOf:
            - type: string
            - type: 'null'
        distance:
          anyOf:
            - type: string
            - type: 'null'
        distance_value:
          anyOf:
            - type: number
            - type: 'null'
        color:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    YandexMapsLink:
      properties:
        '@type':
          type: string
          default: YandexMapsLink
        type:
          anyOf:
            - type: string
            - type: 'null'
        url:
          anyOf:
            - type: string
            - type: 'null'
      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

````