# Refurbed — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

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

**Category:** E-commerce | **Website:** [www.refurbed.se/](https://www.refurbed.se/) | **Docs:** [parse.bot/marketplace/5ba8c602-b1e1-4b5c-a384-65827c45575c/refurbed-se-api](https://parse.bot/marketplace/5ba8c602-b1e1-4b5c-a384-65827c45575c/refurbed-se-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-refurbed-se-api-5ba8c602/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_pricing

Retrieve per-condition pricing and variant breakdown for a single product on one country storefront. Returns base price for the cheapest configuration, price deltas for each condition grade (Excellent/Very Good/Good/Acceptable), and per-variant (colour × storage) prices with availability from the storefront's catalogue.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country storefront code. Determines local currency and pricing. |
| `slug` | string | Yes | Product URL slug from search results (e.g. 'iphone-14', 'apple-macbook-air-m2-2022'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-refurbed-se-api-5ba8c602/get_product_pricing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","slug":"<string>"}'
```

### search_products

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

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country storefront code. Determines catalogue availability, language, and currency. |
| `query` | string | Yes | Search keywords (e.g. 'iPhone 14', 'MacBook Air'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-refurbed-se-api-5ba8c602/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","query":"<string>"}'
```
