# Swappie — 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.

> Get real-time refurbished iPhone pricing and check which models and variants are available in your country through Swappie. Find the best deals on used iPhones by comparing prices across different storage capacities and conditions instantly.

**Category:** E-commerce | **Website:** [swappie.com/se/iphone/](https://swappie.com/se/iphone/) | **Docs:** [parse.bot/marketplace/0679a53d-6856-4115-a0fd-165f2d660e8f/swappie-com-api](https://parse.bot/marketplace/0679a53d-6856-4115-a0fd-165f2d660e8f/swappie-com-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-swappie-com-api-0679a53d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_iphone_prices

Returns all available variants and prices for a specific iPhone model in a given country. Each variant represents a unique combination of color, storage, condition grade, and battery type. Prices are in the local currency of the selected country (SEK for Sweden, EUR for Finland/Germany/etc). A single request returns all variants without pagination.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `country` | string | No | Country code for pricing and availability (e.g. 'se', 'fi', 'de', 'uk'). Determines currency and stock. |
| `model` | string | Yes | iPhone model name as displayed on Swappie (e.g. 'iPhone 15', 'iPhone 14 Pro Max', 'iPhone 13 mini'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-swappie-com-api-0679a53d/get_iphone_prices \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"country":"<string>","model":"<string>"}'
```
