Discover/In Lieu Official API
live

In Lieu Official APIinlieuofficial.com

Access In Lieu Official's full clothing catalog via API. Retrieve titles, prices, sale prices, availability, and image URLs for every product in one call.

This API takes change requests — .
Endpoint health
verified 2h ago
list_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the In Lieu Official API?

The In Lieu Official API exposes the complete product catalog from inlieuofficial.com through a single list_products endpoint, returning 7 fields per product including title, regular price, sale price, currency, availability status, product page URL, and main image URL. All catalog entries are delivered in one response with no pagination required, making it straightforward to mirror or monitor the store's current inventory.

This call costs10 credits / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/54c7ee38-2dc9-4e53-8138-e286f0bcde12/<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/54c7ee38-2dc9-4e53-8138-e286f0bcde12/list_products' \
  -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 inlieuofficial-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: In Lieu Official SDK — bounded, re-runnable; every call capped."""
from parse_apis.inlieuofficial_com_api import InLieu, ParseError

client = InLieu()

# List all products in the catalog (small catalog, single page).
for product in client.products.list(limit=3):
    print(product.title, product.price, product.currency, product.availability)

# Get the first product and inspect its details.
item = client.products.list(limit=1).first()
if item:
    try:
        print(item.title, item.product_url, item.image_url)
    except ParseError as e:
        print(f"error: {e}")

print("exercised: products.list")
All endpoints · 1 totalmissing one? ·

Returns every product in the store catalog. Each product includes title, pricing, availability status, product page URL, and main image URL. The catalog is small (single page); all products are returned in one call.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects with title, price, sale_price, currency, availability, product_url, image_url"
  },
  "sample": {
    "data": {
      "products": [
        {
          "price": "250.0",
          "title": "Avery Earl",
          "currency": "USD",
          "image_url": "https://cdn.shopify.com/s/files/1/0663/2531/5719/files/1.1-MAEF.jpg?v=1783293867",
          "sale_price": null,
          "product_url": "https://www.inlieuofficial.com/products/earl",
          "availability": "in_stock"
        },
        {
          "price": "250.0",
          "title": "Avery Oolong",
          "currency": "USD",
          "image_url": "https://cdn.shopify.com/s/files/1/0663/2531/5719/files/8.1-WAOF.jpg?v=1783293898",
          "sale_price": null,
          "product_url": "https://www.inlieuofficial.com/products/oolong",
          "availability": "in_stock"
        },
        {
          "price": "250.0",
          "title": "Avery Kyoho",
          "currency": "USD",
          "image_url": "https://cdn.shopify.com/s/files/1/0663/2531/5719/files/7.1-WAKF.jpg?v=1783293933",
          "sale_price": null,
          "product_url": "https://www.inlieuofficial.com/products/kyoho",
          "availability": "sold_out"
        },
        {
          "price": "250.0",
          "title": "Avery Pomelo",
          "currency": "USD",
          "image_url": "https://cdn.shopify.com/s/files/1/0663/2531/5719/files/2.1-MAPF.jpg?v=1783293978",
          "sale_price": null,
          "product_url": "https://www.inlieuofficial.com/products/pomelo",
          "availability": "sold_out"
        }
      ]
    },
    "status": "success"
  }
}

About the In Lieu Official API

What the API Returns

The list_products endpoint returns every product currently listed in the In Lieu Official clothing store as a single array. Each object in the products array includes title, price, sale_price, currency, availability, product_url, and image_url. The sale_price field is populated when a product is on promotion, allowing you to distinguish between regular and discounted listings without any additional requests.

Availability and Pricing Fields

The availability field indicates whether a product is currently in stock. Combined with price and sale_price, this lets you track when items go on sale or become unavailable over time. The currency field is returned alongside pricing so there is no ambiguity when displaying values in an application.

Catalog Scope

In Lieu Official's catalog is small enough that the entire product set fits in a single response — the endpoint takes no input parameters and returns all products at once. There is no filtering, sorting, or pagination to configure. The product_url and image_url fields point directly to the product detail page and primary product image, respectively, on the live site.

Reliability & maintenanceVerified

The In Lieu Official API is a managed, monitored endpoint for inlieuofficial.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when inlieuofficial.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 inlieuofficial.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
2h ago
Latest check
1/1 endpoint 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
  • Monitor In Lieu Official for price drops by comparing price and sale_price across periodic API calls
  • Track inventory availability changes using the availability field to alert when sold-out items restock
  • Build a product feed or widget displaying current In Lieu Official items with images pulled from image_url
  • Aggregate independent clothing brand catalogs alongside In Lieu Official product data for comparison shopping
  • Detect new product additions by diffing the title list between scheduled API calls
  • Archive historical pricing data for the full catalog by logging price and sale_price over time
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 In Lieu Official have an official developer API?+
No. In Lieu Official does not publish a public developer API or data feed. This Parse API is the available programmatic option for accessing their catalog data.
What does `list_products` return for items that are not on sale?+
For products without an active promotion, the sale_price field will be null or empty, while price reflects the standard retail price. The currency field is always populated regardless of sale status.
Does the API return product variants such as sizes or colors?+
Not currently. The API returns top-level product data — title, pricing, availability, and image — but does not break down individual size or color variants. You can fork this API on Parse and revise it to add variant-level detail if that granularity is needed.
Does the API include product descriptions or category tags?+
Not currently. The endpoint covers title, pricing fields, availability, product URL, and image URL. Descriptive copy and category/tag metadata are not included in the current response. You can fork the API on Parse and revise it to add those fields.
How fresh is the catalog data?+
The API reflects the current state of the In Lieu Official store at the time of each request. Because the catalog is small and fits in a single call, calling the endpoint on a schedule is a practical way to detect changes in pricing or availability.
Page content last updated . Spec covers 1 endpoint from inlieuofficial.com.
Related APIs in EcommerceSee all →
lightinthebox.com API
Browse and discover products across categories on LightInTheBox, search for items, view detailed product information and customer reviews, and check out current flash sale deals. Find exactly what you're looking for with comprehensive product catalogs and real-time pricing updates.
aliexpress.com API
Search for products across AliExpress and instantly access detailed information including product specs, customer reviews, and pricing to make informed purchasing decisions. Browse through product categories and retrieve complete product data directly from URLs to compare options and find exactly what you're looking for.
shop.lululemon.com API
Access lululemon's product catalog: browse categories, retrieve product details and variants, surface new arrivals, sale items, and recommendations.
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.
ikea.com API
Search and browse IKEA's full product catalog to find items by category, compare measurements, read customer reviews, and check real-time store availability and current deals. Discover new arrivals and best-selling products to help you shop smarter and find exactly what you need.
zumiez.com API
Search Zumiez products by keyword, browse products by category path, and fetch detailed product information (pricing, images, stock status, and attributes) using a product group ID.
urbanoutfitters.com API
Search Urban Outfitters' catalog to find products and browse categories, then view detailed information including prices, descriptions, color and size availability for each item. Check current sale counts and discover what's trending across the store's product lineup.
rei.com API
Search and browse REI's full catalog of outdoor gear and clothing, compare detailed product specifications, check real-time store availability, and read customer reviews to find the perfect equipment for your adventures. Explore products by category or use targeted searches to discover gear that matches your needs, all with instant access to pricing and local stock information.