Discover/Back Market API
live

Back Market APIbackmarket.fr

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

This API takes change requests — .
Endpoint health
verified 7h ago
get_product_details
search_products
get_product_reviews
3/3 passing latest checkself-healing
Endpoints
3
Updated
15d ago

What is the Back Market 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.

This call costs10 credits / call— charged only on success
Try it
Product UUID (e.g. 'a8517119-6ed0-4c6f-8799-22f95658bc19'). Either product_id or product_url must be provided.
Full 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.
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.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/25ea2afe-3b30-4695-b04b-83a719b17b4d/get_product_details?product_id=a8517119-6ed0-4c6f-8799-22f95658bc19&product_url=https%3A%2F%2Fwww.backmarket.fr%2Ffr-fr%2Fp%2Fiphone-15%2Fa8517119-6ed0-4c6f-8799-22f95658bc19' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Extract detailed product information from a Back Market product UUID. Returns pricing, brand, model, images, available variants (condition, battery, storage options), and availability status. Makes multiple internal requests (product page, pickers, details, reviews-summary) and combines the results.

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 Back Market API

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.

Reliability & maintenanceVerified

The Back Market API is a managed, monitored endpoint for backmarket.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when backmarket.fr changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official backmarket.fr API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
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/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 →
backmarket.com API
Search and browse refurbished electronics across Back Market's catalog, compare pricing by condition, and read seller and product reviews to find the best deals. Filter by product categories and access detailed information about listings to make informed purchasing decisions.
refurbed.se API
Search refurbished products across Refurbed's European storefronts and instantly compare pricing broken down by condition level for each country. Find the best deals on refurbished items by viewing how prices vary based on product condition and location.
fnac.com API
Search for electronics and cultural products on Fnac while accessing detailed product information, customer reviews, current deals, and flash sales all in one place. Get comprehensive insights including pricing, specifications, and promotional offers to make informed shopping decisions.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
rebuy.de API
Search for refurbished electronics and media products on rebuy.de and access current pricing information to find the best deals on used items. Compare prices and availability across their catalog to discover affordable alternatives to brand new products.
reebelo.com API
Search Reebelo's refurbished products, browse categories and brands, check real-time pricing and condition-based costs, read customer reviews, and discover current deals all in one place. Get detailed product information including SKU prices and collections to compare and find the best secondhand electronics and accessories.
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
banggood.com API
Search Banggood products and retrieve detailed information including prices, specifications, and customer reviews to help you discover items and make informed purchasing decisions. Perfect for monitoring inventory, comparing products, and staying updated on what's available across Banggood's catalog.