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

> Get full Yandex Maps organization details by permalink (or organization URL): title, rating, review and rating counts, categories, phones, website, address with postal code and coordinates, working hours, features/amenities, nearby metro and stops, photos, awards and social links.

**Price:** 10 credits

**⚠️ Common errors:** 412: Organization not found (well-formed permalink but no such organization on Yandex Maps)



## OpenAPI

````yaml /openapi/local-places.json post /api/yandexmaps/organizations
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:
    post:
      tags:
        - /yandexmaps
      summary: /yandexmaps/organizations
      description: >-
        Get full Yandex Maps organization details by permalink (or organization
        URL): title, rating, review and rating counts, categories, phones,
        website, address with postal code and coordinates, working hours,
        features/amenities, nearby metro and stops, photos, awards and social
        links.


        **Price:** 10 credits


        **⚠️ Common errors:** 412: Organization not found (well-formed permalink
        but no such organization on Yandex Maps)
      operationId: __api_yandexmaps_organizations_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YandexMapsOrganizationsPayload'
      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:
    YandexMapsOrganizationsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        organization:
          type: string
          minLength: 1
      type: object
      required:
        - organization
    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
    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

````