Discover/backmarket.fr API
live

backmarket.fr APIbackmarket.fr

Search refurbished electronics on Back Market France, retrieve product details with variants and pricing, and fetch customer reviews via 3 structured endpoints.

Endpoints
3
Updated
3mo ago
Try it
Product UUID (e.g. 'a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_u
Full Back Market product URL containing a UUID in the path (e.g. 'https://www.backmarket.f
api.parse.bot/scraper/25ea2afe-3b30-4695-b04b-83a719b17b4d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/25ea2afe-3b30-4695-b04b-83a719b17b4d/get_product_details?product_id=%3Cproduct_uuid%3E&product_url=https%3A%2F%2Fwww.backmarket.fr%2Ffr-fr%2Fp%2Fiphone-15%2F%3Cproduct_uuid%3E' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Extract detailed product information from a Back Market product UUID. Returns pricing, brand, model, images, available variants (condition, storage, battery), and availability status.

Input
ParamTypeDescription
product_idstringProduct UUID (e.g. 'a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided.
product_urlstringFull Back Market product URL containing a UUID in the path (e.g. 'https://www.backmarket.fr/fr-fr/p/iphone-15/a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided.
Response
{
  "type": "object",
  "fields": {
    "uuid": "string product UUID",
    "brand": "string brand name",
    "model": "string model name",
    "title": "string product title",
    "images": "array of image URLs",
    "rating": "number average customer rating",
    "variants": "array of picker groups (condition, battery, storage options)",
    "availability": "object with in_stock and can_add_to_cart booleans",
    "review_count": "integer total number of reviews",
    "original_price": "number or null original retail price",
    "starting_price": "string or number lowest available price"
  },
  "sample": {
    "data": {
      "uuid": "a8517119-6ed0-4c6f-8799-22f95658bc19",
      "brand": "Apple",
      "model": "iPhone 15",
      "title": "iPhone 15Bleu • 128 Go • SIM physique + eSIM",
      "images": [
        "https://d2e6ccujb3mkqf.cloudfront.net/a8517119-6ed0-4c6f-8799-22f95658bc19-1_4afffbc4-dcec-45c2-a6ab-fb0b22f2d9b4.jpg"
      ],
      "rating": 4.58,
      "variants": [
        {
          "id": "grades",
          "items": [
            {
              "label": "Très bon état",
              "price": {
                "amount": "396.00",
                "currency": "EUR"
              }
            }
          ],
          "label": "État"
        }
      ],
      "availability": {
        "in_stock": false,
        "can_add_to_cart": false
      },
      "review_count": 29889,
      "original_price": null,
      "starting_price": "396.00"
    },
    "status": "success"
  }
}

About the backmarket.fr API

The Back Market France API covers 3 endpoints for querying the Back Market France catalog: search by keyword, fetch full product details by UUID or URL, and retrieve customer reviews. The search_products endpoint returns paginated results with price, rating, and direct product links. get_product_details exposes condition, storage, and battery variants alongside availability status and original retail price for any listed product.

Product Search

The search_products endpoint accepts a required query string (e.g. 'iPhone 15', 'MacBook Pro') and returns paginated results. Each product object in the products array includes name, uuid, brand, model, price, original_price, rating, review_count, image, and url. Pagination is 0-indexed via the page parameter, and nbPages plus total_hits let you iterate the full result set.

Product Details

get_product_details accepts either a product_id (UUID string) or a full product_url containing a UUID in the path — at least one must be provided. The response includes the product title, brand, model, an images array, aggregate rating, review_count, and original_price when available. The variants field returns an array of picker groups covering condition (e.g. Fair/Good/Excellent), storage capacity, and battery health options. The availability object exposes in_stock and can_add_to_cart booleans for the current listing state.

Customer Reviews

get_product_reviews accepts the same product_id or product_url inputs as the detail endpoint. It returns up to 7 top reviews, each with an integer rating, author name, and comment text. Alongside the review array, the response includes average_rating (out of 5) and review_count for the full aggregate totals, even though the reviews array itself is capped at 7 entries per call.

Common use cases
  • Track refurbished iPhone prices across condition variants (Fair/Good/Excellent) using variants from get_product_details.
  • Build a price-comparison tool that pulls original_price vs. price to show savings on refurbished electronics.
  • Monitor availability.in_stock status for specific product UUIDs to alert users when a listing comes back in stock.
  • Aggregate average_rating and review_count data across search results to rank the best-reviewed refurbished laptops.
  • Extract customer sentiment from comment fields in get_product_reviews for a specific product.
  • Paginate through search_products results to build a full catalog snapshot of Back Market France's refurbished inventory.
  • Compare battery variants for refurbished phones to surface listings with the best battery condition at a given price point.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Back Market have an official public developer API?+
Back Market does not publish a public developer API or documented REST endpoints for external access to its product catalog or reviews.
What does `get_product_details` return beyond basic pricing?+
In addition to price and original_price, the endpoint returns a variants array that breaks down available picker options for condition (e.g. Fair, Good, Excellent), storage capacity, and battery health. It also returns an availability object with in_stock and can_add_to_cart booleans, plus an images array and aggregate rating and review_count.
How many reviews does `get_product_reviews` return per call?+
The endpoint returns up to 7 top reviews per call. The review_count and average_rating fields reflect the full aggregate totals for the product, but paginating through all reviews beyond those 7 is not currently supported. You can fork this API on Parse and revise it to add deeper review pagination.
Does the API cover Back Market sites outside France?+
The API covers backmarket.fr (France) only. Other regional storefronts — such as Back Market US, Germany, or the UK — are not included. You can fork this API on Parse and revise it to target a different regional domain.
Can I retrieve seller-level information or individual seller ratings?+
No seller-level data is exposed. The current endpoints cover product-level fields: pricing, variants, availability, and aggregate customer reviews. You can fork this API on Parse and revise it to add a seller detail endpoint if that data is available on the product page.
Page content last updated . Spec covers 3 endpoints from backmarket.fr.
Related APIs in EcommerceSee all →
mouser.com API
mouser.com API
bigbasket.com API
Browse and search BigBasket's online grocery catalog. Retrieve product details, pricing, stock availability, category trees, search suggestions, homepage promotions, and delivery coverage — all in one API.
woocommerce.com API
Browse and search thousands of WooCommerce extensions, themes, and business services from the official marketplace while accessing detailed product information, user reviews, and ratings. Integrate marketplace data, blog content, and documentation directly into your applications to help users discover and learn about WooCommerce solutions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
lazada.co.th API
Search for products and browse categories on Lazada Thailand to find detailed information like prices, descriptions, and availability. Discover items by keyword or category to compare specifications and make informed purchasing decisions.
Back Market France API – Products & Reviews · Parse