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

# /yahoo_shopping/stores/items

> List items sold by a Yahoo! Shopping (Japan) store by alias (or store URL), with optional sort order. Returns id (store_alias/item_code), title, price, list price, discount, PayPay points, image, brand, rating, review count and store info per result.

**Price:** 10 credits per 30 results

**⚠️ Common errors:** 412: Store not found (well-formed alias but the store does not exist or has no items)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yahoo_shopping/stores/items
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/yahoo_shopping/stores/items:
    post:
      tags:
        - /yahoo_shopping
      summary: /yahoo_shopping/stores/items
      description: >-
        List items sold by a Yahoo! Shopping (Japan) store by alias (or store
        URL), with optional sort order. Returns id (store_alias/item_code),
        title, price, list price, discount, PayPay points, image, brand, rating,
        review count and store info per result.


        **Price:** 10 credits per 30 results


        **⚠️ Common errors:** 412: Store not found (well-formed alias but the
        store does not exist or has no items)
      operationId: __api_yahoo_shopping_stores_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YahooShoppingStoresItemsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooShoppingSearchProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooShoppingStoresItemsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        store:
          type: string
          minLength: 1
        count:
          type: integer
          minimum: 1
        sort:
          $ref: '#/components/schemas/YahooShoppingSearchSort'
          default: recommended
      type: object
      required:
        - store
        - count
    YahooShoppingSearchProduct:
      properties:
        '@type':
          type: string
          default: YahooShoppingSearchProduct
        id:
          type: string
        item_code:
          anyOf:
            - type: string
            - type: 'null'
        store_alias:
          anyOf:
            - type: string
            - type: 'null'
        url:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        actual_price:
          anyOf:
            - type: integer
            - type: 'null'
        list_price:
          anyOf:
            - type: integer
            - type: 'null'
        discount_rate:
          anyOf:
            - type: integer
            - type: 'null'
        currency:
          type: string
          default: JPY
        point:
          anyOf:
            - type: integer
            - type: 'null'
        point_rate:
          anyOf:
            - type: number
            - type: 'null'
        is_free_shipping:
          type: boolean
          default: false
        is_used:
          type: boolean
          default: false
        has_video:
          type: boolean
          default: false
        brand:
          anyOf:
            - type: string
            - type: 'null'
        brand_id:
          anyOf:
            - type: string
            - type: 'null'
        jan_code:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        store:
          anyOf:
            - $ref: '#/components/schemas/YahooShoppingSearchProductStore'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooShoppingSearchSort:
      type: string
      enum:
        - recommended
        - price_asc
        - price_desc
        - review_count
        - review_score
        - discount_rate
    YahooShoppingSearchProductStore:
      properties:
        '@type':
          type: string
          default: YahooShoppingSearchProductStore
        alias:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - 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

````