latestOpenAPI 3.0.32026-08-193973220.1 KB

6a1303364143

Backbox

Return backbox data per listing list

Get the Backbox data related to your competitors, i.e. your online listings competing in a Backbox. You can call this endpoint twice every hour for each country.

Backbox (previously named Buybox) is the listing displayed at a given time on the website when it has the best ratio quality score per price.

This endpoint is being deprecated in favor of the /ws/backbox/v1/competitors endpoint.

get/ws/listings_bi

Query parameters

pageinteger

The page number for pagination

page-sizeinteger

The page size for pagination

Response

List of backbox data per listing

countinteger required

Total number of backbox data per listing

nextstring nullable required

URL to get the next paginated backbox data per listing list. Null if no next page

previousstring nullable required

URL to get the previous paginated backbox data per listing list. Null if no previous page

Example response

{
  "count": 42,
  "next": "https://www.backmarket.fr/ws/listings_bi/?page=2",
  "previous": "https://www.backmarket.fr/ws/listings_bi/?page=1",
  "results": [
    {
      "product": 42,
      "sku": "SuperSKU",
      "price": 70,
      "quantity": 10,
      "price_for_buybox": 60,
      "currency": "EUR",
      "condition": 10
    }
  ]
}