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

# /biccamera/stores

> Get one Bic Camera (ビックカメラ) store by its store code: name, postal code, address, opening hours, storefront and floor-guide images, nearest stations with their train lines, parking, in-store services, contact numbers and social accounts.

**Price:** 1 credit

**⚠️ Common errors:** 412: Store not found (well-formed store code but no such store page)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/biccamera/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/biccamera/stores:
    post:
      tags:
        - /biccamera
      summary: /biccamera/stores
      description: >-
        Get one Bic Camera (ビックカメラ) store by its store code: name, postal code,
        address, opening hours, storefront and floor-guide images, nearest
        stations with their train lines, parking, in-store services, contact
        numbers and social accounts.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Store not found (well-formed store code but
        no such store page)
      operationId: __api_biccamera_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BiccameraStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BiccameraStore'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BiccameraStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        store:
          type: string
      type: object
      required:
        - store
    BiccameraStore:
      properties:
        '@type':
          type: string
          default: BiccameraStore
        id:
          type: string
        url:
          type: string
        name:
          type: string
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        opening_hours:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        map_url:
          anyOf:
            - type: string
            - type: 'null'
        floor_guide_image:
          anyOf:
            - type: string
            - type: 'null'
        access:
          items:
            $ref: '#/components/schemas/BiccameraStoreAccess'
          type: array
          default: []
        parking:
          items:
            type: string
          type: array
          default: []
        services:
          items:
            type: string
          type: array
          default: []
        phones:
          items:
            $ref: '#/components/schemas/BiccameraStorePhone'
          type: array
          default: []
        social_urls:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BiccameraStoreAccess:
      properties:
        '@type':
          type: string
          default: BiccameraStoreAccess
        station:
          type: string
        lines:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - station
    BiccameraStorePhone:
      properties:
        '@type':
          type: string
          default: BiccameraStorePhone
        name:
          type: string
        phone:
          type: string
        hours:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - phone
    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

````