Discover/Container Store API
live

Container Store APIcontainerstore.com

Search The Container Store's product catalog by keyword. Get product names, prices, brands, images, and autocomplete suggestions via 2 JSON endpoints.

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

What is the Container Store API?

The Container Store API provides 2 endpoints for searching and browsing The Container Store's product catalog. The search_products endpoint returns up to 9 fields per product — including pid, title, brand, price, sale_price, image, url, and description — along with facets and pagination metadata. A companion suggest endpoint returns query completions and matching product previews for a given search prefix.

Try it
Page number (1-based).
Number of results per page.
Sort order for results.
Search keyword (e.g. 'bins', 'kitchen organizer', 'closet').
api.parse.bot/scraper/5af121a6-2787-4abb-9063-b692ead7ed37/<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/5af121a6-2787-4abb-9063-b692ead7ed37/search_products?page=1&rows=5&sort=sale_price+asc&query=bins' \
  -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 containerstore-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.

from parse_apis.the_container_store_search_api import ContainerStore, Sort

store = ContainerStore()

# Search for products sorted by price ascending
for product in store.products.search(query="bins", sort=Sort.PRICE_ASC, limit=5):
    print(product.title, product.sale_price, product.brand)

# Get autocomplete suggestions for a prefix
suggestion = store.suggestions.get(query="kitchen")
for qs in suggestion.query_suggestions:
    print(qs.query, qs.display_text)
for ps in suggestion.product_suggestions:
    print(ps.title, ps.sale_price)
All endpoints · 2 totalmissing one? ·

Full-text search over The Container Store product catalog. Returns paginated results with product details (name, brand, price, images, description) and facet counts for filtering. Pagination via page number; sorting by price or best-seller rank. Each page returns up to `rows` products.

Input
ParamTypeDescription
pageintegerPage number (1-based).
rowsintegerNumber of results per page.
sortstringSort order for results.
queryrequiredstringSearch keyword (e.g. 'bins', 'kitchen organizer', 'closet').
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search keyword used",
    "facets": "object with filter categories and their value counts",
    "products": "array of product objects with pid, title, brand, price, sale_price, url, image, description",
    "total_pages": "integer, total number of pages",
    "rows_per_page": "integer, number of results per page",
    "total_results": "integer, total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "bins",
      "facets": {},
      "products": [
        {
          "pid": "10029541",
          "url": "https://www.containerstore.com/s/home-decor/decorative-bins-baskets/water-hyacinth-storage-bins-with-handles/12d?productId=10029541",
          "brand": "The Container Store",
          "image": "https://images.containerstore.com/catalogimages/479464/10085263-x-large-water-hyacinth-bin-.jpg?width=312&height=312",
          "price": 119.94,
          "title": "Water Hyacinth Storage Bins with Handles",
          "sale_price": 119.94,
          "description": "Handwoven from natural water hyacinth..."
        }
      ],
      "total_pages": 37,
      "rows_per_page": 24,
      "total_results": 869
    },
    "status": "success"
  }
}

About the Container Store API

Search Products

The search_products endpoint accepts a required query string (e.g. 'bins', 'closet organizer') and returns a paginated list of matching products. Each product object includes pid, title, brand, price, sale_price, image, url, and description. Results can be sorted by sale_price asc, sale_price desc, or best_seller desc via the sort parameter. The response also includes a facets object containing filter categories and their value counts, which can be used to understand how results break down by attribute.

Autocomplete Suggestions

The suggest endpoint takes a query prefix and returns two arrays: query_suggestions (each with query and display_text) and product_suggestions (each with pid, title, sale_price, image, and url). This is useful for building search-as-you-type experiences or pre-fetching candidate product sets before a full search is triggered.

Pagination and Sorting

search_products supports page (1-based integer) and rows (results per page) parameters alongside the sort option. The response includes total_pages, total_results, and rows_per_page fields so consumers can iterate through the full result set programmatically. Omitting sort returns results in the site's default ranking order.

Reliability & maintenanceVerified

The Container Store API is a managed, monitored endpoint for containerstore.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when containerstore.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 containerstore.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-tracking tool that monitors sale_price changes for specific storage product categories over time.
  • Power a search autocomplete widget using query_suggestions and product_suggestions from the suggest endpoint.
  • Aggregate product catalogs across multiple retailers and compare Container Store items by brand and price.
  • Filter and sort storage products by sale_price asc to identify the lowest-cost options in a given category.
  • Analyze facets data from search_products to understand how a category (e.g. 'closet') breaks down by attribute.
  • Generate curated product lists ranked by best_seller desc for content or affiliate marketing use cases.
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 The Container Store have an official public developer API?+
No. The Container Store does not publish a public developer API or documented REST endpoints for third-party use.
What does the `facets` field in `search_products` contain?+
The facets object returns filter categories relevant to the search query along with value counts for each option. For example, a search for 'bins' might return facets grouping results by material or size, each with a count of matching products. Facets are included in every search_products response and vary by query.
Does the API return product reviews or ratings?+
Not currently. The search_products and suggest endpoints cover product identifiers, titles, brands, prices, images, descriptions, and facets. Review scores and review text are not included in the response. You can fork this API on Parse and revise it to add a product reviews endpoint.
Can I retrieve a product's full detail page — dimensions, color variants, or stock status?+
Not currently. Both endpoints return catalog-level fields: pid, title, brand, price, sale_price, image, url, and description. Detailed attributes like dimensions, color variants, and inventory availability are not exposed. You can fork this API on Parse and revise it to add a product detail endpoint covering those fields.
How does pagination work in `search_products`?+
The endpoint uses 1-based page numbering via the page parameter. The response includes total_pages, total_results, and rows_per_page so you can calculate the full result range. The rows parameter controls how many products are returned per page.
Page content last updated . Spec covers 2 endpoints from containerstore.com.
Related APIs in EcommerceSee all →
brookstone.com API
Search and browse Brookstone's catalog of products with full-text search, filters, sorting, and pagination to find exactly what you need. Get instant search suggestions and access detailed product information including pricing, descriptions, and availability.
westelm.com API
Search West Elm's furniture and home décor catalog by keyword, browse autocomplete suggestions, and filter results by price, style, color, and other attributes. Sort products by relevance, price, or rating and paginate through results.
sweetwater.com API
Search Sweetwater's catalog of musical instruments, audio equipment, and accessories to find products with detailed pricing, availability, ratings, and images. Get autocomplete suggestions as you type to quickly discover exactly what you're looking for.
bestbuy.com API
Search Best Buy's entire product catalog and get instant autocomplete suggestions while browsing, then pull up detailed pricing, availability, and stock information for any item. Easily sort through results, look up multiple products at once, and discover what's trending in real-time.
tesco.com API
Search and browse Tesco's complete grocery catalog to find products with detailed nutritional information, ingredient lists, and customer reviews. Explore product suggestions via autocomplete and browse items organized by category to make informed shopping decisions.
fishersci.com API
Search and discover laboratory products from Fisher Scientific's catalog with real-time results and typeahead suggestions. Find exactly what you need with paginated product listings to browse their full inventory of lab supplies and equipment.
zabars.com API
Search and browse Zabar's gourmet food products with autocomplete suggestions and detailed item information including pricing and availability. Get paginated results to easily discover specialty foods, wines, and delicacies from their curated selection.
dickblick.com API
Search and browse Dick Blick's catalog of art supplies with advanced filtering and sorting options, plus get autocomplete suggestions as you type. Find exactly what you need with pagination support to explore their full product inventory.