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

# /zara/stores/search

> Find Zara physical stores near a geographic point (latitude/longitude). Returns stores ordered by distance, each with name, address, city, state, country, coordinates, phone, store type, sections and weekly opening hours.

**Price:** 5 credits per 10 results



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/zara/stores/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/zara/stores/search:
    post:
      tags:
        - /zara
      summary: /zara/stores/search
      description: >-
        Find Zara physical stores near a geographic point (latitude/longitude).
        Returns stores ordered by distance, each with name, address, city,
        state, country, coordinates, phone, store type, sections and weekly
        opening hours.


        **Price:** 5 credits per 10 results
      operationId: __api_zara_stores_search_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZaraStoresSearchPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZaraStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZaraStoresSearchPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        latitude:
          type: number
          maximum: 90
          minimum: -90
        longitude:
          type: number
          maximum: 180
          minimum: -180
        radius:
          type: integer
          maximum: 100
          minimum: 1
          default: 30
        count:
          type: integer
          minimum: 1
      type: object
      required:
        - latitude
        - longitude
        - count
    ZaraStore:
      properties:
        '@type':
          type: string
          default: ZaraStore
        id:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        state_code:
          anyOf:
            - type: string
            - type: 'null'
        country:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
        type:
          anyOf:
            - type: string
            - type: 'null'
        kind:
          anyOf:
            - type: string
            - type: 'null'
        timezone:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        is_pickup_allowed:
          anyOf:
            - type: boolean
            - type: 'null'
        has_ecommerce:
          anyOf:
            - type: boolean
            - type: 'null'
        sections:
          items:
            type: string
          type: array
          default: []
        opening_hours:
          items:
            $ref: '#/components/schemas/ZaraStoreOpeningHours'
          type: array
          default: []
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZaraStoreOpeningHours:
      properties:
        '@type':
          type: string
          default: ZaraStoreOpeningHours
        date:
          anyOf:
            - type: string
            - type: 'null'
        week_day:
          anyOf:
            - type: integer
            - type: 'null'
        intervals:
          items:
            $ref: '#/components/schemas/ZaraStoreOpeningInterval'
          type: array
          default: []
      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
    ZaraStoreOpeningInterval:
      properties:
        '@type':
          type: string
          default: ZaraStoreOpeningInterval
        open_time:
          anyOf:
            - type: string
            - type: 'null'
        close_time:
          anyOf:
            - type: string
            - type: 'null'
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````