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

# /bookoff/products

> Get one BookOff Online (ブックオフ) catalogue entry by its product code or product URL: title, author or artist, publisher, JAN or ISBN barcode, format and language, the second-hand or the brand-new price with the saving against the retail price, reward points, stock and delivery note, star rating and review count, the publisher's blurb, release date, the full genre breadcrumb chain, the related-word tags, cover images, which of the two conditions the shop carries, and how many branches have a copy on the shelf.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed code but nothing under that address on shopping.bookoff.co.jp), 422: Malformed product (a BookOff product code is 10 digits, e.g. '0020384450')



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/bookoff/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/bookoff/products:
    post:
      tags:
        - /bookoff
      summary: /bookoff/products
      description: >-
        Get one BookOff Online (ブックオフ) catalogue entry by its product code or
        product URL: title, author or artist, publisher, JAN or ISBN barcode,
        format and language, the second-hand or the brand-new price with the
        saving against the retail price, reward points, stock and delivery note,
        star rating and review count, the publisher's blurb, release date, the
        full genre breadcrumb chain, the related-word tags, cover images, which
        of the two conditions the shop carries, and how many branches have a
        copy on the shelf.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed code but
        nothing under that address on shopping.bookoff.co.jp), 422: Malformed
        product (a BookOff product code is 10 digits, e.g. '0020384450')
      operationId: __api_bookoff_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BookoffProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BookoffProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BookoffProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
        condition:
          anyOf:
            - $ref: '#/components/schemas/BookoffCondition'
            - type: 'null'
      type: object
      required:
        - product
    BookoffProduct:
      properties:
        '@type':
          type: string
          default: BookoffProduct
        id:
          type: string
        url:
          type: string
        condition:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        author:
          anyOf:
            - type: string
            - type: 'null'
        authors:
          items:
            type: string
          type: array
          default: []
        publisher:
          anyOf:
            - type: string
            - type: 'null'
        barcode:
          anyOf:
            - type: string
            - type: 'null'
        media_format:
          anyOf:
            - type: string
            - type: 'null'
        language:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        discount_amount:
          anyOf:
            - type: number
            - type: 'null'
        discount_percent:
          anyOf:
            - type: integer
            - type: 'null'
        reward_points:
          anyOf:
            - type: integer
            - type: 'null'
        availability:
          anyOf:
            - type: string
            - type: 'null'
        is_in_stock:
          type: boolean
          default: false
        shipping_note:
          anyOf:
            - type: string
            - type: 'null'
        rating:
          anyOf:
            - type: number
            - type: 'null'
        review_count:
          anyOf:
            - type: integer
            - type: 'null'
        reviews_url:
          anyOf:
            - type: string
            - type: 'null'
        details:
          additionalProperties:
            type: string
          type: object
          default: {}
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        category:
          anyOf:
            - type: string
            - type: 'null'
        subcategory:
          anyOf:
            - type: string
            - type: 'null'
        genre_code:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/BookoffCategoryRef'
          type: array
          default: []
        tags:
          items:
            type: string
          type: array
          default: []
        condition_variants:
          items:
            type: string
          type: array
          default: []
        bundle_url:
          anyOf:
            - type: string
            - type: 'null'
        store_count:
          anyOf:
            - type: integer
            - type: 'null'
        stores_available:
          type: boolean
          default: false
      type: object
      required:
        - id
        - url
        - condition
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BookoffCondition:
      type: string
      enum:
        - used
        - new
    BookoffCategoryRef:
      properties:
        '@type':
          type: string
          default: BookoffCategoryRef
        id:
          type: string
        name:
          type: string
      type: object
      required:
        - id
        - 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

````