# Myigloo — 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 retrieve rental listings from MyIgloo, including property details, pricing, amenities, and landlord contact information. Ideal for exploring available rentals or researching property listings on the platform.

**Category:** Real Estate | **Website:** [myigloo.is/](https://myigloo.is/) | **Docs:** [parse.bot/marketplace/8fe5f9e3-80fc-4c9b-8840-8881ab5d859b/myigloo-is-api](https://parse.bot/marketplace/8fe5f9e3-80fc-4c9b-8840-8881ab5d859b/myigloo-is-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-myigloo-is-api-8fe5f9e3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing

Get full details for a specific rental listing by its numeric ID. Returns property information including address, price, landlord contact info, amenities, images, and rules. Returns stale_input with kind input_not_found if the listing ID does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `listing_id` | string | Yes | Numeric ID of the listing to fetch (e.g. '23340', '23913'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myigloo-is-api-8fe5f9e3/get_listing \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"listing_id":"<string>"}'
```

### scrape_listings

Retrieve rental listings from myigloo.is with full metadata and landlord information. Fetches paginated listing IDs then retrieves full details for each. Each listing includes address, price, landlord contact, amenities, images, and rules. Returns all active listings unless a limit is specified. Makes one API call per listing for detail hydration, so large limits are slow.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of listings to return. If omitted, all active listings are returned. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-myigloo-is-api-8fe5f9e3/scrape_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```
