# Linio — 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 for products on Linio Colombia and retrieve detailed information including pricing, availability, and specifications for each item. Build shopping applications, price comparison tools, or inventory management systems with real-time product data from Colombia's Falabella marketplace.

**Category:** E-commerce | **Website:** [linio.com/](https://linio.com/) | **Docs:** [parse.bot/marketplace/a3499b57-731f-498c-934b-6e405e9efb53/linio-com-api](https://parse.bot/marketplace/a3499b57-731f-498c-934b-6e405e9efb53/linio-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-linio-com-api-a3499b57/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_details

Retrieve detailed information for a specific product on Falabella Colombia. Accepts either a product_id (preferred, used for SDK navigation) or a full product URL. Returns pricing variants, stock levels, specifications, images, and HTML description.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | No | Product identifier (numeric string, e.g. '152109166'). Obtained from search results items[*].id. Either product_id or url must be provided. |
| `url` | string | No | Product detail page URL. Can be a full URL (e.g. 'https://www.falabella.com.co/falabella-co/product/152109166/celular-samsung-a17-5g-256gb-8gb-ss') or a relative path starting with '/'. Either product_id or url must be provided. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-linio-com-api-a3499b57/get_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>","url":"<string>"}'
```

### search

Full-text search over Falabella Colombia's product catalog. Returns paginated product summaries with pricing, seller, rating, and availability metadata. Pagination is page-based; total_results is always returned but current page and total_pages may be null when the site omits them.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination, must be a positive integer. |
| `query` | string | Yes | Search keyword (e.g. 'samsung', 'laptop', 'audifonos') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-linio-com-api-a3499b57/search \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","query":"<string>"}'
```
