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

# /reverb/items

> Get Reverb (reverb.com) listing details by ID or URL

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/reverb/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/reverb/items:
    post:
      tags:
        - /reverb
      summary: /reverb/items
      description: |-
        Get Reverb (reverb.com) listing details by ID or URL

        **Price:** 1 credit

        **⚠️ Common errors:** 412: Listing not found
      operationId: __api_reverb_items_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReverbItemPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ReverbItem'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ReverbItemPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        currency:
          $ref: '#/components/schemas/ReverbCurrency'
          default: USD
        shipping_region:
          $ref: '#/components/schemas/ReverbShippingRegion'
          default: US_CON
        locale:
          $ref: '#/components/schemas/ReverbLocale'
          default: en
        item:
          type: string
          minLength: 1
      type: object
      required:
        - item
    ReverbItem:
      properties:
        '@type':
          type: string
          default: ReverbItem
        id:
          type: string
        url:
          anyOf:
            - type: string
            - type: 'null'
        listing_title:
          type: string
        make:
          anyOf:
            - type: string
            - type: 'null'
        model:
          anyOf:
            - type: string
            - type: 'null'
        finish:
          anyOf:
            - type: string
            - type: 'null'
        year:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        price_display:
          anyOf:
            - type: string
            - type: 'null'
        buyer_price:
          anyOf:
            - type: number
            - type: 'null'
        listing_currency:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - $ref: '#/components/schemas/ReverbCondition'
            - type: 'null'
        categories:
          items:
            $ref: '#/components/schemas/ReverbCategory'
          type: array
          default: []
        state:
          anyOf:
            - type: string
            - type: 'null'
        is_auction:
          type: boolean
          default: false
        accepts_offers:
          type: boolean
          default: false
        offer_count:
          type: integer
          default: 0
        inventory:
          anyOf:
            - type: integer
            - type: 'null'
        shop_id:
          anyOf:
            - type: integer
            - type: 'null'
        shop_name:
          anyOf:
            - type: string
            - type: 'null'
        shop_alias:
          anyOf:
            - type: string
            - type: 'null'
        is_shop_preferred_seller:
          type: boolean
          default: false
        shop_feedback_count:
          anyOf:
            - type: integer
            - type: 'null'
        shop_rating_percentage:
          anyOf:
            - type: number
            - type: 'null'
        location:
          anyOf:
            - $ref: '#/components/schemas/ReverbLocation'
            - type: 'null'
        shipping:
          anyOf:
            - $ref: '#/components/schemas/ReverbShipping'
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        videos:
          items:
            type: string
          type: array
          default: []
        view_count:
          anyOf:
            - type: integer
            - type: 'null'
        watch_count:
          anyOf:
            - type: integer
            - type: 'null'
        sku:
          anyOf:
            - type: string
            - type: 'null'
        is_handmade:
          type: boolean
          default: false
        is_sold_as_is:
          type: boolean
          default: false
        origin_country_code:
          anyOf:
            - type: string
            - type: 'null'
        comparison_shopping_page_id:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: integer
            - type: 'null'
        published_at:
          anyOf:
            - type: integer
            - type: 'null'
        shipping_policy:
          anyOf:
            - type: string
            - type: 'null'
        return_policy:
          anyOf:
            - type: string
            - type: 'null'
        accepted_payment_methods:
          items:
            type: string
          type: array
          default: []
      type: object
      required:
        - id
        - listing_title
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ReverbCurrency:
      type: string
      enum:
        - USD
        - CAD
        - EUR
        - GBP
        - AUD
        - JPY
        - NZD
    ReverbShippingRegion:
      type: string
      enum:
        - XX
        - US_CON
        - CA
        - GB
        - AU
        - FR
        - DE
        - JP
        - ID
        - US_AK
        - US_HI
        - US_PR
        - US_OTHER
    ReverbLocale:
      type: string
      enum:
        - en
        - fr
        - ja
        - es
        - de
        - it
    ReverbCondition:
      properties:
        '@type':
          type: string
          default: ReverbCondition
        uuid:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        slug:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ReverbCategory:
      properties:
        '@type':
          type: string
          default: ReverbCategory
        uuid:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ReverbLocation:
      properties:
        '@type':
          type: string
          default: ReverbLocation
        region:
          anyOf:
            - type: string
            - type: 'null'
        locality:
          anyOf:
            - type: string
            - type: 'null'
        country_code:
          anyOf:
            - type: string
            - type: 'null'
        display_location:
          anyOf:
            - type: string
            - type: 'null'
      type: object
    ReverbShipping:
      properties:
        '@type':
          type: string
          default: ReverbShipping
        has_local_pickup:
          type: boolean
          default: false
        has_free_expedited:
          type: boolean
          default: false
        rates:
          items:
            $ref: '#/components/schemas/ReverbShippingRate'
          type: array
          default: []
      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
    ReverbShippingRate:
      properties:
        '@type':
          type: string
          default: ReverbShippingRate
        region_code:
          anyOf:
            - type: string
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        display:
          anyOf:
            - type: string
            - type: 'null'
        is_carrier_calculated:
          type: boolean
          default: false
      type: object
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````