Discover/Refurbed API
live

Refurbed APIrefurbed.se

Search refurbed.se products and retrieve per-condition pricing across European storefronts. Two endpoints cover product search and variant-level price breakdowns.

This API takes change requests — .
Endpoint health
verified 1d ago
get_product_pricing
search_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
1d ago

What is the Refurbed API?

The Refurbed.se API provides two endpoints for querying refurbished product data across Refurbed's European country storefronts. Use search_products to find products by keyword with brand, starting price, and slug, then call get_product_pricing to retrieve a full condition-grade breakdown — Excellent, Very Good, Good, and Acceptable — alongside per-variant pricing for every colour and storage combination available in a given country's catalogue.

Try it
Search keywords (e.g. 'iPhone 14', 'MacBook Air').
Country storefront code. Determines catalogue availability, language, and currency.
api.parse.bot/scraper/09f65201-6045-4761-969d-e264d825f96d/<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/09f65201-6045-4761-969d-e264d825f96d/search_products?query=iPhone+14&country=de' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace refurbed-se-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: refurbed SDK — bounded, re-runnable; every call capped."""
from parse_apis.refurbed_se_api import Refurbed, Country, ProductNotFound

client = Refurbed()

# Search for products on the Swedish storefront
for product in client.products.search(query="iPhone 14", country=Country.SE, limit=3):
    print(product.name, product.brand, product.starting_price, product.currency)

# Drill-down: get detailed pricing for first result
hit = client.products.search(query="MacBook Air", country=Country.DE, limit=1).first()
if hit:
    try:
        pricing = client.product_pricings.get(slug=hit.slug, country=Country.DE)
        print(pricing.product_name, pricing.currency, pricing.base_price)
        for cond in pricing.condition_prices:
            print(f"  {cond.grade_label}: {cond.price_from}")
    except ProductNotFound as e:
        print(f"not found: {e.slug}")

print("exercised: products.search, product_pricings.get")
All endpoints · 2 totalmissing one? ·

Full-text search across one country storefront's product catalogue. Returns matched products with name, brand, starting price, and slug for detail lookup. Results are the storefront's default ranking (popularity-weighted relevance).

Input
ParamTypeDescription
queryrequiredstringSearch keywords (e.g. 'iPhone 14', 'MacBook Air').
countrystringCountry storefront code. Determines catalogue availability, language, and currency.
Response
{
  "type": "object",
  "fields": {
    "query": "echoed search query",
    "country": "echoed country code",
    "products": "array of product results",
    "total_results": "number of products returned"
  },
  "sample": {
    "data": {
      "query": "iPhone 14",
      "country": "se",
      "products": [
        {
          "name": "iPhone 14",
          "slug": "iphone-14",
          "brand": "Apple",
          "currency": "SEK",
          "product_id": "6144",
          "product_url": "https://www.refurbed.se/p/iphone-14/40940c/",
          "starting_price": 3519
        }
      ],
      "total_results": 16
    },
    "status": "success"
  }
}

About the Refurbed API

Endpoints and Data Coverage

The search_products endpoint accepts a query string and an optional country code. It returns an array of matched products, each with a product name, brand, starting price, and URL slug. The total_results field reflects how many products matched the query on that storefront. Results follow the storefront's default popularity-weighted relevance ranking — there is no explicit sort parameter.

Per-Condition and Per-Variant Pricing

Once you have a slug, get_product_pricing returns a detailed pricing structure for that product on a given storefront. The base_price field gives the lowest available price across all configurations. color_options and storage_options arrays each include a price delta relative to the base, so you can reconstruct the full pricing matrix without iterating every variants entry. The variants array covers every colour × storage combination with individual prices and availability flags. The currency field is an ISO code matching the storefront's local currency, which shifts when you change the country parameter.

Country Storefront Switching

Both endpoints accept the same country parameter, letting you compare the same product slug across multiple European markets. Catalogue availability, language, and currency all vary by country code — a slug that returns results in one market may return nothing in another if that product is not listed locally. Iterating the same slug across several country codes is a straightforward way to build cross-market price comparisons.

Condition Grades

Refurbed uses four named condition grades: Excellent, Very Good, Good, and Acceptable. get_product_pricing exposes price deltas for each grade relative to the base configuration, making it possible to compute exact prices at each quality tier without additional requests.

Reliability & maintenanceVerified

The Refurbed API is a managed, monitored endpoint for refurbed.se — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when refurbed.se 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 refurbed.se 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
1d ago
Latest check
2/2 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
  • Compare refurbished iPhone prices across European country storefronts using the country parameter on get_product_pricing.
  • Build a price-drop alert system by periodically calling get_product_pricing and tracking changes to base_price per slug.
  • Display condition-grade price tiers (Excellent through Acceptable) in a buyer decision tool using the grade delta fields.
  • Identify which colour or storage variant offers the lowest entry price by parsing color_options and storage_options deltas.
  • Populate a refurbished product catalogue feed by chaining search_products slugs into get_product_pricing calls.
  • Analyse regional pricing differences for the same device model across multiple Refurbed country storefronts.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Refurbed have an official public developer API?+
Refurbed does not publish a public developer API for third-party access to its product catalogue or pricing data.
What does `get_product_pricing` return that `search_products` does not?+
search_products returns only the name, brand, starting price, and slug per product. get_product_pricing goes further: it provides the full variants array (colour × storage combinations with individual prices and availability), per-grade price deltas for Excellent/Very Good/Good/Acceptable conditions, color_options and storage_options arrays with base-relative deltas, and the ISO currency code for the storefront.
Does the API cover seller reviews or individual seller listings?+
Not currently. The API covers product-level pricing, condition grades, and variant availability — it does not expose individual seller profiles, seller ratings, or per-seller offer breakdowns. You can fork this API on Parse and revise it to add an endpoint targeting that data.
Are all European Refurbed storefronts supported, and how do I select one?+
Both endpoints accept a country parameter that selects the storefront, adjusting catalogue availability, language, and currency. Not every slug is guaranteed to exist in every market — if a product is not listed in a given country, the endpoint will return no results for that combination. Coverage depends on Refurbed's local catalogue for that country at query time.
Does the API support pagination for search results?+
The search_products endpoint returns a total_results count but does not currently expose a pagination parameter for fetching additional pages of results beyond the default response. You can fork this API on Parse and revise it to add offset or page-based pagination support.
Page content last updated . Spec covers 2 endpoints from refurbed.se.
Related APIs in EcommerceSee all →
backmarket.fr API
Search for refurbished products on Back Market and retrieve detailed information including product specifications, available variants, pricing, and customer reviews all in one place. Get comprehensive product data to compare options and make informed purchasing decisions on certified refurbished electronics and devices.
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.
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.
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
anker.com API
Search and browse Anker products to find prices, images, variants, and availability information directly from their online store. Get detailed product specifications to compare items and make informed purchasing decisions.
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.
vinted.de API
Search and browse secondhand items on Vinted.de with customizable filters to find exactly what you're looking for. Get detailed product information including descriptions, categories, colors, and pricing to make informed purchasing decisions.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.