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

# /joshin/stores

> Get one Joshin (上新電機) shop by its store code: name, address, postal code, phone, coordinates, opening state and date, Google place id, shop notices, the services and product ranges the shop offers, its announcements, weekly opening hours, exceptional closures and the nearest sibling shops with their distance.

**Price:** 1 credit

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



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/joshin/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/joshin/stores:
    post:
      tags:
        - /joshin
      summary: /joshin/stores
      description: >-
        Get one Joshin (上新電機) shop by its store code: name, address, postal
        code, phone, coordinates, opening state and date, Google place id, shop
        notices, the services and product ranges the shop offers, its
        announcements, weekly opening hours, exceptional closures and the
        nearest sibling shops with their distance.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Store not found (well-formed store code but
        no such Joshin shop)
      operationId: __api_joshin_stores_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/JoshinStoresPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/JoshinStoreDetail'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    JoshinStoresPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        store:
          type: string
          minLength: 1
      type: object
      required:
        - store
    JoshinStoreDetail:
      properties:
        '@type':
          type: string
          default: JoshinStoreDetail
        id:
          type: string
        url:
          type: string
        name:
          type: string
        name_kana:
          anyOf:
            - type: string
            - type: 'null'
        prefecture:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        address:
          anyOf:
            - type: string
            - type: 'null'
        postal_code:
          anyOf:
            - type: string
            - type: 'null'
        phone:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        business_status:
          anyOf:
            - type: string
            - type: 'null'
        opening_date:
          anyOf:
            - type: string
            - type: 'null'
        notes:
          items:
            type: string
          type: array
          default: []
        business_hours:
          items:
            $ref: '#/components/schemas/JoshinStoreHours'
          type: array
          default: []
        special_hours:
          items:
            $ref: '#/components/schemas/JoshinStoreSpecialHours'
          type: array
          default: []
        place_id:
          anyOf:
            - type: string
            - type: 'null'
        services:
          items:
            type: string
          type: array
          default: []
        announcements:
          items:
            type: string
          type: array
          default: []
        nearby_stores:
          items:
            $ref: '#/components/schemas/JoshinNearbyStore'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    JoshinStoreHours:
      properties:
        '@type':
          type: string
          default: JoshinStoreHours
        day:
          type: string
        open_time:
          anyOf:
            - type: string
            - type: 'null'
        close_time:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - day
    JoshinStoreSpecialHours:
      properties:
        '@type':
          type: string
          default: JoshinStoreSpecialHours
        start_date:
          type: string
        end_date:
          anyOf:
            - type: string
            - type: 'null'
        open_time:
          anyOf:
            - type: string
            - type: 'null'
        close_time:
          anyOf:
            - type: string
            - type: 'null'
        is_closed:
          type: boolean
          default: false
      type: object
      required:
        - start_date
    JoshinNearbyStore:
      properties:
        '@type':
          type: string
          default: JoshinNearbyStore
        id:
          type: string
        url:
          type: string
        name:
          type: string
        address:
          anyOf:
            - type: string
            - type: 'null'
        business_status:
          anyOf:
            - type: string
            - type: 'null'
        distance_km:
          anyOf:
            - type: number
            - type: 'null'
      type: object
      required:
        - id
        - url
        - name
    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

````