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

# /surugaya/products

> Get one Suruga-ya (駿河屋) product by its product id or product URL: name, the price Suruga-ya itself asks for every condition it stocks and the price it pays to buy that condition back, manufacturer list price, brand, release date, internal stock number, category breadcrumbs, photos, the free-text product notes, the artist or author profile, the track list of a music release and every category-specific field the shop publishes (model number, voice cast, publisher, imprint, disc count and so on), plus how many other shops sell it and from which price.

**Price:** 1 credit

**⚠️ Common errors:** 412: Product not found (well-formed product id but no such product on suruga-ya.jp)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/surugaya/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/surugaya/products:
    post:
      tags:
        - /surugaya
      summary: /surugaya/products
      description: >-
        Get one Suruga-ya (駿河屋) product by its product id or product URL: name,
        the price Suruga-ya itself asks for every condition it stocks and the
        price it pays to buy that condition back, manufacturer list price,
        brand, release date, internal stock number, category breadcrumbs,
        photos, the free-text product notes, the artist or author profile, the
        track list of a music release and every category-specific field the shop
        publishes (model number, voice cast, publisher, imprint, disc count and
        so on), plus how many other shops sell it and from which price.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Product not found (well-formed product id but
        no such product on suruga-ya.jp)
      operationId: __api_surugaya_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SurugayaProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SurugayaProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SurugayaProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
      type: object
      required:
        - product
    SurugayaProduct:
      properties:
        '@type':
          type: string
          default: SurugayaProduct
        id:
          type: string
        url:
          type: string
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        product_type:
          anyOf:
            - type: string
            - type: 'null'
        department:
          anyOf:
            - type: string
            - type: 'null'
        brand:
          anyOf:
            - type: string
            - type: 'null'
        stock_numbers:
          items:
            type: string
          type: array
          default: []
        release_date:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        list_price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          type: string
          default: JPY
        grades:
          items:
            $ref: '#/components/schemas/SurugayaGrade'
          type: array
          default: []
        is_sold_out:
          type: boolean
          default: false
        category:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/SurugayaCategoryRef'
          type: array
          default: []
        profile:
          anyOf:
            - type: string
            - type: 'null'
        tracklist:
          items:
            type: string
          type: array
          default: []
        details:
          additionalProperties:
            type: string
          type: object
          default: {}
        other_offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        other_offer_price_from:
          anyOf:
            - type: number
            - type: 'null'
        offers_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SurugayaGrade:
      properties:
        '@type':
          type: string
          default: SurugayaGrade
        condition:
          type: string
        condition_type:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        trade_in_price:
          anyOf:
            - type: number
            - type: 'null'
        stock_quantity:
          anyOf:
            - type: integer
            - type: 'null'
        branch_number:
          anyOf:
            - type: string
            - type: 'null'
        variant_number:
          anyOf:
            - type: string
            - type: 'null'
        badge:
          anyOf:
            - type: string
            - type: 'null'
        is_selected:
          type: boolean
          default: false
      type: object
      required:
        - condition
    SurugayaCategoryRef:
      properties:
        '@type':
          type: string
          default: SurugayaCategoryRef
        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

````