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.
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.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/54c7ee38-2dc9-4e53-8138-e286f0bcde12/list_products' \ -H 'X-API-Key: $PARSE_API_KEY'
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")
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.
No input parameters required.
{
"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.
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.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Monitor In Lieu Official for price drops by comparing
priceandsale_priceacross periodic API calls - Track inventory availability changes using the
availabilityfield 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
titlelist between scheduled API calls - Archive historical pricing data for the full catalog by logging
priceandsale_priceover time
| 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 | 100 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 In Lieu Official have an official developer API?+
What does `list_products` return for items that are not on sale?+
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.