Discover/Linio API
live

Linio APIlinio.com

Search Linio/Falabella Colombia products and retrieve pricing, variants, stock, specifications, and images via two structured endpoints.

Endpoint health
verified 4d ago
search
get_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d ago

What is the Linio 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.

Try it
Page number for pagination, must be a positive integer.
Search keyword (e.g. 'samsung', 'laptop', 'audifonos')
api.parse.bot/scraper/30123d1d-f490-457f-b005-bd656d3c1467/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/30123d1d-f490-457f-b005-bd656d3c1467/search?page=1&query=samsung' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace linio-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Linio Colombia SDK — search products and inspect details."""
from parse_apis.linio_colombia_product_api import Linio, ProductNotFound

client = Linio()

# Search for Samsung products — limit caps total items fetched across pages.
for product in client.productsummaries.search(query="samsung", limit=5):
    print(product.name, product.brand, product.seller)

# Drill into the first result's full detail via navigation.
summary = client.productsummaries.search(query="laptop", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.brand, detail.is_out_of_stock)
    for spec in detail.specifications[:3]:
        print(spec.name, spec.value)
    for variant in detail.variants[:2]:
        print(variant.sku, variant.is_purchasable, variant.stock)

# Direct product lookup by ID with typed error handling.
try:
    product = client.products.get(product_id="152109166")
    print(product.name, product.brand, len(product.images))
except ProductNotFound as exc:
    print(f"Product gone: {exc.product_id}")

print("exercised: productsummaries.search / summary.details / products.get")
All endpoints · 2 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number for pagination, must be a positive integer.
queryrequiredstringSearch keyword (e.g. 'samsung', 'laptop', 'audifonos')
Response
{
  "type": "object",
  "fields": {
    "items": "array of product summary 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": "152109166",
          "sku": "152109168",
          "url": "https://www.falabella.com.co/falabella-co/product/152109166/celular-samsung-a17-5g-256gb-8gb-ss",
          "name": "Celular A17 5G 256GB 8GB SS",
          "brand": "SAMSUNG",
          "image": "https://media.falabella.com.co/falabellaCO/152109168_01/public",
          "prices": [
            {
              "type": "eventPrice",
              "icons": "",
              "label": "",
              "price": [
                "713.900"
              ],
              "symbol": "$ ",
              "crossed": false
            },
            {
              "type": "normalPrice",
              "icons": "",
              "label": "",
              "price": [
                "1.400.000"
              ],
              "symbol": "$ ",
              "crossed": true
            }
          ],
          "rating": "2",
          "seller": "STAR",
          "reviews": "2",
          "availability": {
            "primeShipping": "",
            "expressShipping": "",
            "homeDeliveryShipping": "",
            "internationalShipping": "",
            "pickUpFromStoreShipping": ""
          }
        }
      ],
      "pagination": {
        "current": null,
        "total_pages": null,
        "total_results": 4283
      }
    },
    "status": "success"
  }
}

About the Linio API

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.

Reliability & maintenanceVerified

The Linio API is a managed, monitored endpoint for linio.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when linio.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official linio.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a price comparison tool that tracks prices changes across product variants over time
  • Monitor is_out_of_stock and stock fields across multiple SKUs for inventory alerts
  • Populate a product catalog with specifications arrays for faceted search or filtering
  • Aggregate rating and reviews counts from search results to rank top-rated products in a category
  • Extract seller and offers data to compare third-party marketplace pricing for the same product
  • Generate structured product feeds using description_text and images for downstream content pipelines
  • Track brand distribution across keyword search results for competitive market analysis in Colombia
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does Falabella/Linio have an official developer API?+
Falabella operates a Sellers API for approved marketplace partners at developers.falabella.com, primarily covering order management and inventory for registered sellers. It is not a public product-data API and requires merchant onboarding.
What does the `variants` array in `get_details` actually contain?+
Each variant object includes a 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?+
Not currently. The API exposes product-level 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?+
Yes. The 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.
Does this API cover other Linio regional storefronts such as Mexico, Peru, or Chile?+
Not currently. The API targets Falabella Colombia specifically, which absorbed the Linio Colombia storefront. Regional Linio or Falabella sites for other countries are not covered. You can fork this API on Parse and revise it to point at another regional storefront's product pages.
Page content last updated . Spec covers 2 endpoints from linio.com.
Related APIs in EcommerceSee all →
ripley.com API
Search for products across Ripley.cl's catalog and retrieve detailed information like prices, descriptions, and availability for any item. Perfect for comparing products, tracking pricing, or integrating Ripley's inventory into your own applications.
mercadolibre.com.mx API
Search for products on Mercado Libre Mexico, view detailed product information with pricing and offers, browse categories, and research seller details all in one place. Access live marketplace data including product listings, category hierarchies, and current offers to help you find and compare items across Mexico's largest e-commerce platform.
mercadolibre.com API
Search and retrieve product listings, details, customer reviews, categories, and current deals from MercadoLibre across multiple countries to find the best products and prices. Get comprehensive product information including specifications and user feedback to make informed purchasing decisions.
lista.mercadolivre.com.br API
Search and browse products from Mercado Livre Brazil, view detailed pricing and offers, and explore categories to find daily deals and product information. Get comprehensive product details including specifications and current market offers all in one place.
tiendamia.com API
Search for products across multiple countries and vendors on Tiendamia, then access detailed product information, best sellers, outlet deals, and weekly promotions. Get real-time pricing and availability data to find the best deals across different markets.
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
coppel.com API
Search and browse Coppel's product catalog by keyword to find items with prices, images, and detailed product information, with flexible sorting and pagination options. Get real-time access to Mexico's largest department store inventory to compare products and prices effortlessly.
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.