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

# /tsukumo/products

> Get full TSUKUMO (ツクモ) product details by product number or product URL: name, maker, tax-included price, availability and condition, stock and dispatch lines, purchase limit, merchandising labels, release date, the marketing copy, every photo, the category trail, the specification table, the manufacturer's own extended specification table, and the star rating with the review count and its breakdown by star.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed product number but no such product on shop.tsukumo.co.jp)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/tsukumo/products
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/tsukumo/products:
    post:
      tags:
        - /tsukumo
      summary: /tsukumo/products
      description: >-
        Get full TSUKUMO (ツクモ) product details by product number or product URL:
        name, maker, tax-included price, availability and condition, stock and
        dispatch lines, purchase limit, merchandising labels, release date, the
        marketing copy, every photo, the category trail, the specification
        table, the manufacturer's own extended specification table, and the star
        rating with the review count and its breakdown by star.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed product number
        but no such product on shop.tsukumo.co.jp)
      operationId: __api_tsukumo_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TsukumoProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TsukumoProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TsukumoProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
      type: object
      required:
        - product
    TsukumoProduct:
      properties:
        '@type':
          type: string
          default: TsukumoProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        maker:
          anyOf:
            - type: string
            - type: 'null'
        maker_id:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        price_text:
          anyOf:
            - type: string
            - type: 'null'
        points:
          anyOf:
            - type: integer
            - type: 'null'
        customize_url:
          anyOf:
            - type: string
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        item_condition:
          anyOf:
            - type: string
            - type: 'null'
        stock_message:
          anyOf:
            - type: string
            - type: 'null'
        delivery_message:
          anyOf:
            - type: string
            - type: 'null'
        purchase_limit:
          anyOf:
            - type: string
            - type: 'null'
        badges:
          items:
            type: string
          type: array
          default: []
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        release_date_text:
          anyOf:
            - type: string
            - type: 'null'
        summary:
          anyOf:
            - type: string
            - type: 'null'
        highlights:
          anyOf:
            - type: string
            - type: 'null'
        notes:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        breadcrumbs:
          items:
            type: string
          type: array
          default: []
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        extended_specs:
          additionalProperties:
            type: string
          type: object
          default: {}
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        rating_breakdown:
          additionalProperties:
            type: integer
          type: object
          default: {}
        review_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      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

````