Littleboxindia APIlittleboxindia.com ↗
Find newly launched products from LittleBox India's inventory and quickly identify which items are missing color information in their product titles. Use this to spot data quality gaps and ensure your product catalog is complete and properly categorized.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/2f11bf2b-7c74-4a58-aeda-a1024dadf892/list_new_arrivals_missing_color' \ -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 littleboxindia-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: LittleBox India SDK — list SKUs missing color in title."""
from parse_apis.littleboxindia_com_api import LittleBox, ParseError
client = LittleBox()
# List products from New Arrivals that are missing the "in <Color>" sub-color in title
for product in client.products.missing_color(limit=3):
print(product.sku, product.title, product.product_type)
# Get just the first item for inspection
item = client.products.missing_color(limit=1).first()
try:
print(item.sku, item.handle, item.product_id)
except ParseError as e:
print(f"error: {e}")
print("exercised: products.missing_color")
Lists all SKUs from the New Arrivals collection whose product titles lack the standard 'in <Color>' sub-color suffix. The site convention is to append a color name after 'in' (e.g. 'Ruched Mini Dress in Dusty Blue'); products missing this pattern are returned. Results are fetched in a single call across all pages of the collection.
No input parameters required.
{
"type": "object",
"fields": {
"items": "array of products missing color in title, each with sku, title, handle, product_id, product_type",
"total": "integer count of matching products"
},
"sample": {
"data": {
"items": [
{
"sku": "DR13506",
"title": "Ruched Floral Print Sleeveless Mini Dress",
"handle": "ruched-floral-print-sleeveless-mini-dress",
"product_id": 10536597225759,
"product_type": "Dresses"
},
{
"sku": "TP14184",
"title": "Checkered Smocked Waist V Neck Sleeveless Top",
"handle": "checkered-smocked-waist-v-neck-sleeveless-top-1",
"product_id": 10536592998687,
"product_type": "Tops"
},
{
"sku": "TP13525",
"title": "Beaded Neck Sheer Floral Top",
"handle": "beaded-neck-sheer-floral-top",
"product_id": 10536589426975,
"product_type": "Tops"
}
],
"total": 72
},
"status": "success"
}
}About the Littleboxindia API
The Littleboxindia API on Parse exposes 1 endpoint for the publicly available data on littleboxindia.com. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.