# Inmuebles Mercadolibre — 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 apartment listings on Mercado Libre Argentina with detailed information including prices, addresses, and full descriptions. Get access to paginated results to easily explore available properties across different areas.

**Category:** Real Estate | **Website:** [inmuebles.mercadolibre.com.ar/](https://inmuebles.mercadolibre.com.ar/) | **Docs:** [parse.bot/marketplace/0890bb17-d864-4266-a9c7-af87784d8651/inmuebles-mercadolibre-com-ar-api](https://parse.bot/marketplace/0890bb17-d864-4266-a9c7-af87784d8651/inmuebles-mercadolibre-com-ar-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-inmuebles-mercadolibre-com-ar-api-0890bb17/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_listing_detail

Retrieve full details for a single property listing including price, address, description text, and structured attributes like surface area, rooms, and bathrooms. The URL should be obtained from search_apartments results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full URL of the listing detail page (e.g. from search_apartments results[*].url). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-inmuebles-mercadolibre-com-ar-api-0890bb17/get_listing_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### search_apartments

Search for apartment listings in a specified location on MercadoLibre Argentina. Returns paginated results with basic listing info including title, price, address, and property attributes. Each page contains up to 48 listings. The PoW challenge is solved automatically on first request.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `include_details` | boolean | No | Whether to fetch full details (description, extended attributes) for each listing. Significantly slower when true. |
| `limit` | integer | No | Maximum number of listings to return. Omitting returns all listings found across the requested pages. |
| `location` | string | No | URL-friendly location slug for filtering results. Known working values include 'capital-federal', 'cordoba', 'palermo', 'rosario'. The site accepts many more location slugs. |
| `pages` | integer | No | Number of pages to scrape (48 listings per page). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-inmuebles-mercadolibre-com-ar-api-0890bb17/search_apartments \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"include_details":"<boolean>","limit":"<integer>","location":"<string>","pages":"<integer>"}'
```
