# Hemnet — 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 and browse real estate listings from Sweden's leading property portal, retrieving comprehensive property details including prices, specifications, and availability. Access detailed information about thousands of homes and properties to find your next Swedish property or compare market listings.

**Category:** Real Estate | **Website:** [hemnet.se/](https://hemnet.se/) | **Docs:** [parse.bot/marketplace/57447b9c-92fe-469c-89be-04cf14fa0747/hemnet-se-api](https://parse.bot/marketplace/57447b9c-92fe-469c-89be-04cf14fa0747/hemnet-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-hemnet-se-api-57447b9c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_details

Get detailed information for a specific listing by its slug. Includes operating costs, full description, tenure, coordinates, and image gallery. Works for both active and sold/deactivated listings. The slug is the URL path segment after /bostad/ and can be obtained from search results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Listing slug from the URL path, e.g. 'lagenhet-2rum-vallingby-grimsta-stockholms-kommun-kanngjutargrand-50-21664384'. Obtainable from search results' slug field or by extracting the path after /bostad/ in listing URLs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hemnet-se-api-57447b9c/get_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### search

Browse real estate listings on Hemnet.se with pagination support. Returns listing summaries including price, address, area, image URLs, and basic specs. Results are ordered by recency (newest first). Each page returns up to 50 listings. Use max_pages to fetch multiple pages sequentially in a single call.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_pages` | integer | No | Maximum number of pages to scrape sequentially. |
| `page` | integer | No | Starting page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-hemnet-se-api-57447b9c/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_pages":"<integer>","page":"<integer>"}'
```
