Discover/shopdisney.com API
live

shopdisney.com APIshopdisney.com

Access shopDisney product data via API: search by keyword, browse categories, get new arrivals, and fetch full product details including price, images, and attributes.

Endpoints
4
Updated
3mo ago
Try it
Number of results per page.
Sorting rule. Accepted values: 'new-popular', 'date-desc', 'price-low-to-high', 'price-hig
Search keyword (e.g. 'mickey', 'frozen', 'plush').
Pagination offset.
api.parse.bot/scraper/fcad6ac1-e410-4df8-82e2-aae202498e5b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/fcad6ac1-e410-4df8-82e2-aae202498e5b/search_products?sz=3&sort=new-popular&query=mickey&start=0' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for products by keyword on shopDisney. Returns a paginated list of products with basic metadata including price, availability, and category.

Input
ParamTypeDescription
szintegerNumber of results per page.
sortstringSorting rule. Accepted values: 'new-popular', 'date-desc', 'price-low-to-high', 'price-high-to-low'.
queryrequiredstringSearch keyword (e.g. 'mickey', 'frozen', 'plush').
startintegerPagination offset.
Response
{
  "type": "object",
  "fields": {
    "count": "integer, number of products returned in this page",
    "products": "array of product objects with id, name, price, original_price, badge, category, url, image_url, availability"
  },
  "sample": {
    "data": {
      "count": 48,
      "products": [
        {
          "id": "5205107791017m",
          "url": "https://www.disneystore.com/mickey-mouse-americana-baseball-jersey-for-adults-5205107791017M.html?isProductSearch=1&searchType=regular",
          "name": "Mickey Mouse Americana Baseball Jersey for Adults",
          "badge": "new",
          "price": "74.99",
          "category": "Tops",
          "image_url": "https://cdn-ssl.s7.shopdisney.com/is/image/DisneyShopping/5205107791017?fmt=jpeg&qlt=90&wid=192&hei=192",
          "availability": "online - in_stock",
          "original_price": "74.99"
        }
      ]
    },
    "status": "success"
  }
}

About the shopdisney.com API

The shopDisney API exposes 4 endpoints that cover the full Disney Store catalog, from keyword search to per-product detail retrieval. The get_product_details endpoint returns up to 9 fields per product including images, size and color attributes, breadcrumb categories, and full description text. Listing endpoints like search_products and get_category_products support pagination and four sort orders, making it straightforward to traverse large result sets programmatically.

Searching and Browsing the shopDisney Catalog

The search_products endpoint accepts a required query string (e.g. 'mickey', 'frozen', 'plush') and returns a paginated list of matching products. Each result includes id, name, price, original_price, badge, category, url, image_url, and availability. The sort parameter accepts 'new-popular', 'date-desc', 'price-low-to-high', or 'price-high-to-low', and start plus sz handle pagination offset and page size.

Category and New Arrivals Browsing

get_category_products takes a category_id such as 'toys', 'clothing', 'accessories', or 'home' and returns the same product list shape as search, with the same sort and pagination controls. For time-sensitive use cases, get_new_arrivals returns recently added products sorted by recency. It supports sz and start for pagination but does not accept a sort override, since recency is the implicit order.

Product Detail Retrieval

get_product_details takes a product_id sourced from any listing endpoint and returns a richer object: images (array of URLs), attributes (array of objects with label and values, covering sizes and colors), breadcrumbs (array of category path strings), description (full text), and availability status alongside price and original_price. This is the endpoint to use when building product pages, comparison tools, or inventory monitors that need the full attribute set.

Common use cases
  • Track price drops on Disney merchandise by comparing price against original_price across repeated calls to search_products.
  • Build a new-release alert system using get_new_arrivals to detect products added since the last poll.
  • Populate a product catalog with full images and size/color variants using get_product_details attributes and images arrays.
  • Monitor availability status of specific product IDs to notify users when out-of-stock items return.
  • Aggregate products by category using get_category_products with category IDs like 'toys' or 'home' for category-level analytics.
  • Sort and filter keyword search results by price range for a price-comparison tool using search_products with sort and pagination params.
  • Extract breadcrumb data from get_product_details to map shopDisney's category taxonomy programmatically.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 shopDisney have an official developer API?+
No. shopDisney does not offer a public developer API or documented data feed. This Parse API is the way to access structured shopDisney catalog data programmatically.
What does the `get_product_details` endpoint return that listing endpoints do not?+
get_product_details returns several fields not present in listing results: a description string with the full product text, an images array with multiple image URLs, an attributes array breaking out available sizes and colors, and a breadcrumbs array showing the full category path. Listing endpoints return only a single image_url and no attribute or description data.
Does the API expose customer reviews or ratings for products?+
Not currently. The API covers product metadata, pricing, availability, images, and attributes. You can fork this API on Parse and revise it to add a reviews endpoint for a given product ID.
Are there any limitations on category browsing — for example, sub-category navigation?+
get_category_products accepts top-level category IDs such as 'toys', 'clothing', 'accessories', and 'home'. Nested sub-category IDs are not documented as accepted values in the current spec. The breadcrumbs field in get_product_details can help you understand the category hierarchy for products you've already retrieved, but there is no dedicated endpoint to list all valid category IDs. You can fork this API on Parse and revise it to add a category-listing endpoint.
How does pagination work across the listing endpoints?+
All three listing endpoints (search_products, get_category_products, get_new_arrivals) accept a start integer for the offset and sz for the page size. The response includes a count field showing how many products were returned in that page. To walk through all results, increment start by sz on each request until count returns fewer results than sz.
Page content last updated . Spec covers 4 endpoints from shopdisney.com.
Related APIs in EcommerceSee all →
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.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.
shopDisney API – Products, Search & Categories · Parse