linio.com APIlinio.com ↗
Search Linio/Falabella Colombia products and retrieve pricing, variants, stock, specifications, and images via two structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/30123d1d-f490-457f-b005-bd656d3c1467/search?page=1&query=laptop' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Linio/Falabella Colombia. Returns paginated results with product summaries including pricing, seller, and availability information.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination, must be a positive integer. |
| queryrequired | string | Search keyword (e.g. 'samsung', 'laptop') |
{
"type": "object",
"fields": {
"items": "array of product objects with id, sku, name, brand, prices, url, rating, reviews, seller, availability, and image",
"pagination": "object with current, total_pages, and total_results"
},
"sample": {
"data": {
"items": [
{
"id": "127739910",
"sku": "127739911",
"url": "https://www.falabella.com.co/falabella-co/product/127739910/portatil-dell-15-intel-core-i5-1334u-ssd-512gb-ram-12gb-fhd-15-6-win-11",
"name": "Portátil 15.6\" FHD Intel Core i5 13ª Gen 12GB RAM 512GB SSD Plata",
"brand": "DELL",
"image": "https://media.falabella.com.co/falabellaCO/127739911_01/public",
"prices": [
{
"type": "eventPrice",
"icons": "",
"label": "",
"price": [
"1.699.900"
],
"symbol": "$ ",
"crossed": false
},
{
"type": "normalPrice",
"icons": "",
"label": "",
"price": [
"3.054.800"
],
"symbol": "$ ",
"crossed": true
}
],
"rating": "4.9091",
"seller": "Compumarket Bga",
"reviews": "11",
"availability": {
"primeShipping": "",
"expressShipping": "",
"homeDeliveryShipping": "",
"internationalShipping": "",
"pickUpFromStoreShipping": ""
}
}
],
"pagination": {
"current": null,
"total_pages": null,
"total_results": 22973
}
},
"status": "success"
}
}About the linio.com API
The Linio/Falabella Colombia API exposes 2 endpoints — search and get_details — covering product discovery and full product detail retrieval from Colombia's Falabella marketplace. A single search call returns paginated results with up to 10 fields per product including brand, pricing, seller, availability, and ratings. get_details adds variant-level pricing, purchasability flags, specification arrays, and HTML descriptions for any product URL.
Search Endpoint
The search endpoint accepts a required query string (e.g., 'samsung', 'laptop') and an optional page integer for pagination. Each item in the items array includes id, sku, name, brand, prices, url, rating, reviews, seller, availability, and image. The pagination object returns current, total_pages, and total_results, giving you the data needed to walk through multi-page result sets programmatically.
Product Detail Endpoint
The get_details endpoint takes a full Falabella Colombia product page URL and returns a structured object with variants, specifications, images, description_html, and description_text. The variants array breaks down each SKU-level option with its own prices, is_purchasable flag, stock count, and offers. The specifications array contains named attribute pairs — useful for filtering or comparing technical details across products.
Data Shape and Coverage
Both endpoints reflect the public Falabella Colombia catalog. The is_out_of_stock boolean at the product level gives a quick availability check without parsing variant data. Prices and stock can differ across variants, so iterating the variants array in get_details is necessary for accurate per-option data. Products are scoped to the Falabella Colombia storefront; other Linio regional sites are not included.
- Build a price comparison tool that tracks
priceschanges across product variants over time - Monitor
is_out_of_stockandstockfields across multiple SKUs for inventory alerts - Populate a product catalog with
specificationsarrays for faceted search or filtering - Aggregate
ratingandreviewscounts fromsearchresults to rank top-rated products in a category - Extract
sellerandoffersdata to compare third-party marketplace pricing for the same product - Generate structured product feeds using
description_textandimagesfor downstream content pipelines - Track
branddistribution across keyword search results for competitive market analysis in Colombia
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Falabella/Linio have an official developer API?+
What does the `variants` array in `get_details` actually contain?+
sku, a display name, a prices structure, an is_purchasable boolean, a stock count, and an offers array. This lets you distinguish, for example, different color or storage options of the same product and see which are currently purchasable versus out-of-stock.Does the API cover seller reviews, question-and-answer sections, or seller ratings separately from product ratings?+
rating and reviews counts in search results, and variant-level offers in get_details, but does not return individual review text, Q&A threads, or per-seller rating breakdowns. You can fork this API on Parse and revise it to add an endpoint targeting those data sections.Is pagination available on `search`, and are there any limits to be aware of?+
search endpoint accepts a page integer and returns a pagination object with current, total_pages, and total_results. The page parameter must be a positive integer. Results beyond the last page will return no items, so checking total_pages before iterating is recommended.