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

# /paypayfleamarket/items

> Get a full Yahoo!フリマ (formerly PayPay フリマ) listing by its id or URL: asking price in yen, sale status, declared item condition, title and description, the whole photo gallery, view and like counts, how many buyers asked a question, requested a discount or made an offer, the four-level category path, brands, the linked product catalogue entry, the JAN barcode, hashtags, item specifications, shipping method, parcel size and dispatch window, the IMEI of a listed phone, the prefecture the item ships from, and the seller with their rating, verification status and trading record. Sold listings also carry when they sold and how long they took to sell.

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found (well-formed id but no such listing on Yahoo!フリマ)



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/paypayfleamarket/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/paypayfleamarket/items:
    post:
      tags:
        - /paypayfleamarket
      summary: /paypayfleamarket/items
      description: >-
        Get a full Yahoo!フリマ (formerly PayPay フリマ) listing by its id or URL:
        asking price in yen, sale status, declared item condition, title and
        description, the whole photo gallery, view and like counts, how many
        buyers asked a question, requested a discount or made an offer, the
        four-level category path, brands, the linked product catalogue entry,
        the JAN barcode, hashtags, item specifications, shipping method, parcel
        size and dispatch window, the IMEI of a listed phone, the prefecture the
        item ships from, and the seller with their rating, verification status
        and trading record. Sold listings also carry when they sold and how long
        they took to sell.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Listing not found (well-formed id but no such
        listing on Yahoo!フリマ)
      operationId: __api_paypayfleamarket_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PaypayfleamarketItemsPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaypayfleamarketItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    PaypayfleamarketItemsPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    PaypayfleamarketItem:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketItem
        id:
          type: string
        url:
          type: string
        name:
          type: string
        price:
          anyOf:
            - type: number
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        condition_name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        like_count:
          anyOf:
            - type: integer
            - type: 'null'
        question_count:
          anyOf:
            - type: integer
            - type: 'null'
        discount_count:
          anyOf:
            - type: integer
            - type: 'null'
        offer_count:
          anyOf:
            - type: integer
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        opened_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        sold_at:
          anyOf:
            - type: integer
            - type: 'null'
        sold_in_minutes:
          anyOf:
            - type: integer
            - type: 'null'
        sold_in_label:
          anyOf:
            - type: string
            - type: 'null'
        is_fast_sale:
          anyOf:
            - type: boolean
            - type: 'null'
        category:
          anyOf:
            - $ref: '#/components/schemas/PaypayfleamarketCategoryRef'
            - type: 'null'
        category_path:
          items:
            $ref: '#/components/schemas/PaypayfleamarketCategoryRef'
          type: array
          default: []
        category_url:
          anyOf:
            - type: string
            - type: 'null'
        product_category:
          anyOf:
            - $ref: '#/components/schemas/PaypayfleamarketCategoryRef'
            - type: 'null'
        brands:
          items:
            $ref: '#/components/schemas/PaypayfleamarketBrand'
          type: array
          default: []
        catalog_id:
          anyOf:
            - type: string
            - type: 'null'
        product_url:
          anyOf:
            - type: string
            - type: 'null'
        jancodes:
          items:
            type: string
          type: array
          default: []
        price_compare_url:
          anyOf:
            - type: string
            - type: 'null'
        hashtags:
          items:
            type: string
          type: array
          default: []
        specs:
          items:
            $ref: '#/components/schemas/PaypayfleamarketItemSpec'
          type: array
          default: []
        delivery_method:
          anyOf:
            - type: string
            - type: 'null'
        delivery_method_name:
          anyOf:
            - type: string
            - type: 'null'
        delivery_size:
          anyOf:
            - type: string
            - type: 'null'
        delivery_schedule:
          anyOf:
            - type: string
            - type: 'null'
        delivery_schedule_name:
          anyOf:
            - type: string
            - type: 'null'
        imei:
          anyOf:
            - type: string
            - type: 'null'
        location:
          anyOf:
            - type: string
            - type: 'null'
        location_name:
          anyOf:
            - type: string
            - type: 'null'
        item_type:
          anyOf:
            - type: string
            - type: 'null'
        is_no_price_item:
          anyOf:
            - type: boolean
            - type: 'null'
        is_first_submit:
          anyOf:
            - type: boolean
            - type: 'null'
        is_free_shipping_campaign:
          anyOf:
            - type: boolean
            - type: 'null'
        is_web_purchase_only:
          anyOf:
            - type: boolean
            - type: 'null'
        is_flat_price:
          anyOf:
            - type: boolean
            - type: 'null'
        is_inspecting:
          anyOf:
            - type: boolean
            - type: 'null'
        is_bulk_purchase_requestable:
          anyOf:
            - type: boolean
            - type: 'null'
        count_down_campaign_expires_at:
          anyOf:
            - type: integer
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/PaypayfleamarketUser'
            - type: 'null'
      type: object
      required:
        - id
        - url
        - name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    PaypayfleamarketCategoryRef:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketCategoryRef
        id:
          type: integer
        name:
          type: string
      type: object
      required:
        - id
        - name
    PaypayfleamarketBrand:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketBrand
        id:
          type: integer
        name:
          type: string
        name_kana:
          anyOf:
            - type: string
            - type: 'null'
        name_english:
          anyOf:
            - type: string
            - type: 'null'
        has_children:
          anyOf:
            - type: boolean
            - type: 'null'
      type: object
      required:
        - id
        - name
    PaypayfleamarketItemSpec:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketItemSpec
        id:
          anyOf:
            - type: integer
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        values:
          items:
            type: string
          type: array
          default: []
      type: object
    PaypayfleamarketUser:
      properties:
        '@type':
          type: string
          default: PaypayfleamarketUser
        id:
          type: string
        url:
          type: string
        nickname:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        rating_count:
          anyOf:
            - type: integer
            - type: 'null'
        good_ratio:
          anyOf:
            - type: number
            - type: 'null'
        is_deleted:
          anyOf:
            - type: boolean
            - type: 'null'
        is_kyc_completed:
          anyOf:
            - type: boolean
            - type: 'null'
        is_trusted:
          anyOf:
            - type: boolean
            - type: 'null'
        is_gold:
          anyOf:
            - type: boolean
            - type: 'null'
        ship_badge_level:
          anyOf:
            - type: string
            - type: 'null'
        trading_record_label:
          anyOf:
            - type: string
            - type: 'null'
        trading_record_level:
          anyOf:
            - type: integer
            - type: 'null'
        external_trading_record_level:
          anyOf:
            - type: integer
            - type: 'null'
        follower_count:
          anyOf:
            - type: integer
            - type: 'null'
        followee_count:
          anyOf:
            - type: integer
            - type: 'null'
      type: object
      required:
        - id
        - url
    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

````