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

# /backmarket/products/offers

> Get every condition-grade offer for a Back Market product by id (uuid) or URL: each grade (Fair/Good/Excellent/Premium) with its price, seller, stock and warranty.

**Price:** 1 credit

**⚠️ Common errors:** 412: No offers found for the given product id in this marketplace region



## OpenAPI

````yaml /openapi/e-commerce-marketplaces.json post /api/backmarket/products/offers
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/backmarket/products/offers:
    post:
      tags:
        - /backmarket
      summary: /backmarket/products/offers
      description: >-
        Get every condition-grade offer for a Back Market product by id (uuid)
        or URL: each grade (Fair/Good/Excellent/Premium) with its price, seller,
        stock and warranty.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: No offers found for the given product id in
        this marketplace region
      operationId: __api_backmarket_products_offers_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BackmarketProductsOffersPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BackmarketOffer'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BackmarketProductsOffersPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        locale:
          $ref: '#/components/schemas/BackmarketLocale'
          default: en-us
        product:
          type: string
          minLength: 1
      type: object
      required:
        - product
    BackmarketOffer:
      properties:
        '@type':
          type: string
          default: BackmarketOffer
        id:
          type: string
        object_id:
          anyOf:
            - type: string
            - type: 'null'
        listing_id:
          anyOf:
            - type: string
            - type: 'null'
        condition:
          anyOf:
            - type: string
            - type: 'null'
        condition_code:
          anyOf:
            - type: integer
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        price_new:
          anyOf:
            - type: number
            - type: 'null'
        currency:
          anyOf:
            - type: string
            - type: 'null'
        seller_id:
          anyOf:
            - type: integer
            - type: 'null'
        stock:
          anyOf:
            - type: integer
            - type: 'null'
        warranty_months:
          anyOf:
            - type: integer
            - type: 'null'
        special_offer_type:
          anyOf:
            - type: integer
            - type: 'null'
        product_url:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - id
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    BackmarketLocale:
      type: string
      enum:
        - en-us
        - es-us
        - en-gb
        - fr-fr
        - de-de
        - de-at
        - fr-be
        - es-es
        - it-it
        - pt-pt
        - nl-nl
        - en-ie
        - sv-se
        - fi-fi
        - el-gr
        - sk-sk
        - ja-jp
        - en-au
    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

````