> ## 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/auctions/products

> Get a Yahoo! Auctions Japan (Yahoo!オークション) catalog product by id or product page URL — the normalised model that individual auctions are matched to. Returns the product name, photo, lowest current price and lowest buy-it-now price across all live auctions, appraisal availability, the number of live auctions and the auctions themselves with price, bid count, end time, condition, region, shipping cost and seller rating.

**Price:** 5 credits

**⚠️ Common errors:** 412: Product not found (well-formed id but no such catalog product)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/yahoo/auctions/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/yahoo/auctions/products:
    post:
      tags:
        - /yahoo/auctions
      summary: /yahoo/auctions/products
      description: >-
        Get a Yahoo! Auctions Japan (Yahoo!オークション) catalog product by id or
        product page URL — the normalised model that individual auctions are
        matched to. Returns the product name, photo, lowest current price and
        lowest buy-it-now price across all live auctions, appraisal
        availability, the number of live auctions and the auctions themselves
        with price, bid count, end time, condition, region, shipping cost and
        seller rating.


        **Price:** 5 credits


        **⚠️ Common errors:** 412: Product not found (well-formed id but no such
        catalog product)
      operationId: __api_yahoo_auctions_products_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/YahooAuctionsProductsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/YahooAuctionsProduct'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    YahooAuctionsProductsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    YahooAuctionsProduct:
      properties:
        '@type':
          type: string
          default: YahooAuctionsProduct
        id:
          type: string
        url:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        lowest_price:
          anyOf:
            - type: integer
            - type: 'null'
        lowest_buy_now_price:
          anyOf:
            - type: integer
            - type: 'null'
        product_category_id:
          anyOf:
            - type: string
            - type: 'null'
        is_appraisal:
          anyOf:
            - type: boolean
            - type: 'null'
        listing_count:
          anyOf:
            - type: integer
            - type: 'null'
        listings:
          items:
            $ref: '#/components/schemas/YahooAuctionsProductListing'
          type: array
          default: []
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    YahooAuctionsProductListing:
      properties:
        '@type':
          type: string
          default: YahooAuctionsProductListing
        id:
          type: string
        url:
          type: string
        name:
          type: string
        image:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: integer
            - type: 'null'
        buy_now_price:
          anyOf:
            - type: integer
            - type: 'null'
        bid_count:
          anyOf:
            - type: integer
            - type: 'null'
        end_at:
          anyOf:
            - type: integer
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        category_id:
          anyOf:
            - type: string
            - type: 'null'
        region:
          anyOf:
            - type: string
            - type: 'null'
        shipping_note:
          anyOf:
            - type: string
            - type: 'null'
        shipping_fee:
          anyOf:
            - type: integer
            - type: 'null'
        is_free_shipping:
          anyOf:
            - type: boolean
            - type: 'null'
        is_appraisal:
          anyOf:
            - type: boolean
            - type: 'null'
        seller_is_store:
          anyOf:
            - type: boolean
            - type: 'null'
        seller_good_rating:
          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

````