# Shop Inrego — 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.

> Browse Inrego's refurbished laptop inventory and retrieve detailed product information including prices, specifications, and real-time availability from their Swedish e-commerce store. Find the perfect refurbished laptop by comparing models, specs, and current stock status all in one place.

**Category:** E-commerce | **Website:** [shop.inrego.se/barbara](https://shop.inrego.se/barbara) | **Docs:** [parse.bot/marketplace/4d2ea383-4a26-4f6f-a0ff-f21f62dea471/shop-inrego-se-api](https://parse.bot/marketplace/4d2ea383-4a26-4f6f-a0ff-f21f62dea471/shop-inrego-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-shop-inrego-se-api-4d2ea383/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_desktop_details

Get full details of a specific desktop/stationary computer listing including price, condition, availability, image, and complete technical specifications. The slug parameter is obtained from list_desktops results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_desktops (e.g. 'lenovo-thinkcentre-m920q-14'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/get_desktop_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_laptop_details

Get full details of a specific laptop listing including price, condition, availability, image, and complete technical specifications. The slug parameter is obtained from list_laptops results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_laptops (e.g. 'hp-elitebook-840-g6-26'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/get_laptop_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_phone_details

Get full details of a specific mobile phone listing including price, condition, availability, image, and complete technical specifications. The slug parameter is obtained from list_phones results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_phones (e.g. 'apple-iphone-se-3rd-gen-2022-6'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/get_phone_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### get_tablet_details

Get full details of a specific tablet listing including price, condition, availability, image, and complete technical specifications. The slug parameter is obtained from list_tablets results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug from list_tablets (e.g. 'apple-ipad-102-9th-gen-2021-wi-fi-11'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/get_tablet_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_desktops

List refurbished desktop/stationary computer products with prices and basic specs. Returns up to 33 products per page, paginated by offset. Use offset 0 for the first page, 33 for the second, etc. Products are sorted by bestsellers by default. Each product includes a slug that can be used with get_desktop_details for full specifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Pagination offset. Each page returns up to 33 products. Use 0 for first page, 33 for second, 66 for third, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/list_desktops \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>"}'
```

### list_laptops

List refurbished laptop products with prices and basic specs. Returns ~33 products per page, paginated by offset. Use offset 0 for the first page, 33 for the second, etc. Products are sorted by bestsellers by default. Each product includes a slug that can be used with get_laptop_details for full specifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Pagination offset. Each page returns ~33 products. Use 0 for first page, 33 for second, 66 for third, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/list_laptops \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>"}'
```

### list_phones

List refurbished mobile phone products with prices and basic specs. Returns ~33 products per page, paginated by offset. Use offset 0 for the first page, 33 for the second, etc. Products are sorted by bestsellers by default. Each product includes a slug that can be used with get_phone_details for full specifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Pagination offset. Each page returns ~33 products. Use 0 for first page, 33 for second, 66 for third, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/list_phones \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>"}'
```

### list_tablets

List refurbished tablet products with prices and basic specs. Returns up to 33 products per page, paginated by offset. Use offset 0 for the first page, 33 for the second, etc. Products are sorted by bestsellers by default. Each product includes a slug that can be used with get_tablet_details for full specifications. Currently the category has around 10 products total.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `offset` | integer | No | Pagination offset. Each page returns up to 33 products. Use 0 for first page, 33 for second, 66 for third, etc. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-inrego-se-api-4d2ea383/list_tablets \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"offset":"<integer>"}'
```
