Discover/DSW API
live

DSW APIdsw.com

Search DSW shoe listings, browse by category, and fetch customer reviews with ratings, fit notes, and recommendation flags via 3 structured endpoints.

Endpoint health
verified 2d ago
search_products
get_category_products
get_product_reviews
3/3 passing latest checkself-healing
Endpoints
3
Updated
26d ago

What is the DSW API?

The DSW API gives developers structured access to DSW's footwear catalog and customer feedback across 3 endpoints. Use search_products to query the catalog by keyword and get back product IDs, brand names, prices, review ratings, and available color options. get_category_products lets you browse by category path, while get_product_reviews returns per-product review text, secondary ratings for comfort, fit, and width, and syndication flags.

Try it
Page number (0-indexed)
Search keyword (e.g. 'nike running', 'sandals')
Number of results per page
api.parse.bot/scraper/980bb31b-e076-49ea-bcc0-fd8b0cc7825e/<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/980bb31b-e076-49ea-bcc0-fd8b0cc7825e/search_products?page=0&query=nike+running&page_size=5' \
  -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 dsw-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.dsw_product_api import DSW, Product, Review, ReviewSort

dsw = DSW()

# Search for running shoes
for product in dsw.products.search(query="nike running", limit=5):
    print(product.name, product.price, product.review_rating)

# Browse a category
for product in dsw.products.browse(category_uri="/category/womens/shoes", limit=3):
    print(product.name, product.brand, product.badges)

# Get reviews for a specific product using constructible access
shoe = dsw.product(id="593026")
for review in shoe.reviews.list(sort=ReviewSort.NEWEST):
    print(review.title, review.rating, review.date)
All endpoints · 3 totalmissing one? ·

Full-text search over DSW's product catalog by keyword. Returns paginated results with product details including pricing, ratings, stock, and available colors. Pagination is 0-indexed. Each product exposes an id usable with get_product_reviews.

Input
ParamTypeDescription
pageintegerPage number (0-indexed)
queryrequiredstringSearch keyword (e.g. 'nike running', 'sandals')
page_sizeintegerNumber of results per page
Response
{
  "type": "object",
  "fields": {
    "total": "integer total number of matching products",
    "products": "array of product objects with id, name, brand, price, review_rating, review_count, badges, color_list, stock_quantity"
  },
  "sample": {
    "data": {
      "total": 700,
      "products": [
        {
          "id": "593026",
          "name": "Run Defy Running Shoe - Men's",
          "brand": [
            "Nike"
          ],
          "price": 64.96,
          "badges": [
            "top_rated"
          ],
          "gender": [
            "Men"
          ],
          "color_list": [
            "Blue"
          ],
          "is_sponsored": false,
          "review_count": 59,
          "category_list": [
            "Running Shoes"
          ],
          "review_rating": 4.5085,
          "stock_quantity": 1330,
          "clearance_price": 64.96
        }
      ]
    },
    "status": "success"
  }
}

About the DSW API

Product Search and Category Browsing

search_products accepts a required query string (e.g. 'nike running') and optional page and page_size parameters for 0-indexed pagination. Each product object in the response includes id, name, brand, price, review_rating, review_count, badges, and color/size availability. The total field tells you how many matching products exist across all pages. get_category_products works the same way but takes a category_uri path (e.g. '/category/womens/shoes') instead of a keyword, making it suitable for systematic catalog traversal by department.

Customer Reviews

get_product_reviews takes a product_id sourced from either listing endpoint, plus optional limit, offset, and sort parameters. The sort field follows a field:direction format — supported values include submissiontime:desc, rating:desc, and rating:asc. Each review object exposes id, author, rating, title, text, date, is_recommended, is_syndicated, and a secondary_ratings object covering comfort, fit, and width dimensions. The total_reviews field reflects the full count for pagination purposes.

Data Coverage and Scope

All three endpoints return live catalog and review data from DSW's footwear inventory. Product records include badge metadata (such as sale or new-arrival flags) alongside pricing and aggregated rating signals. The is_syndicated flag on reviews indicates whether a review originated from a partner retailer rather than DSW directly — useful if you need to filter for DSW-native feedback only.

Reliability & maintenanceVerified

The DSW API is a managed, monitored endpoint for dsw.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when dsw.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 dsw.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
2d ago
Latest check
3/3 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
  • Track price changes across a DSW category by polling get_category_products on a schedule and recording the price field per product.
  • Build a shoe recommendation tool that filters search_products results by review_rating and brand for a given keyword.
  • Aggregate secondary review dimensions (comfort, fit, width) from get_product_reviews to surface sizing insights for specific shoe models.
  • Flag syndicated reviews by filtering on is_syndicated in get_product_reviews to isolate DSW-native customer feedback.
  • Monitor badge metadata from search_products to detect when products receive sale or new-arrival labels.
  • Compare review volume (review_count) across competing brands within a category using get_category_products results.
  • Identify top-reviewed products in a category by sorting get_product_reviews with rating:desc and correlating with total_reviews.
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 DSW have an official public developer API?+
DSW does not publish a public developer API or documented data access program for third-party developers.
What does the `secondary_ratings` field in reviews contain?+
The secondary_ratings object inside each review from get_product_reviews holds dimensional ratings for comfort, fit, and width. These are distinct from the top-level numeric rating and represent the reviewer's assessment of those specific product attributes.
Can I retrieve individual product detail pages (full description, materials, images)?+
Not currently. The API covers product listings with fields like name, brand, price, badges, and color/size info, but does not expose full product detail pages including descriptions, materials, or image URLs. You can fork this API on Parse and revise it to add a product detail endpoint.
How does pagination work across the listing endpoints?+
search_products and get_category_products both use 0-indexed page and page_size parameters. The total field in each response gives the full count of matching products, so you can compute the number of pages needed by dividing total by page_size. get_product_reviews uses offset and limit instead, with total_reviews serving the same role.
Does the API cover DSW store inventory or in-store availability?+
Not currently. The endpoints return catalog-level product data and customer reviews but do not include store-level inventory or local availability information. You can fork this API on Parse and revise it to add an endpoint targeting store stock data.
Page content last updated . Spec covers 3 endpoints from dsw.com.
Related APIs in EcommerceSee all →
sneakers.com API
Search and browse sneaker products across categories and brands, view detailed product information, and discover current flash sales and trending searches from sneakers.com. Get instant access to sneaker listings, pricing, and real-time sale events to find exactly what you're looking for.
netshoes.com API
Search and browse products on Netshoes.com.br by keyword or category. Retrieve detailed product information including specifications, pricing, available sizes and colors, customer reviews, and delivery estimates by ZIP code.
footlocker.com API
Access product listings, pricing, availability, customer reviews, release calendars, and category/brand browsing data from Foot Locker.
sephora.com API
Search and browse Sephora's product catalog to find detailed information about beauty items, including specifications, customer reviews, Q&A discussions, pricing, and real-time availability. Filter products by category or brand, and access comprehensive brand listings to discover exactly what you're looking for.
asos.com API
Search and browse ASOS's fashion catalog to discover products across women's and men's categories, view real-time pricing and stock information, and find trending or sale items. Get detailed product information, explore similar items, and discover new arrivals and brands all in one place.
gap.com API
Search and browse Gap's product catalog by keyword or category, retrieve detailed product information including pricing, available sizes, colors, and customer reviews, get product recommendations, locate nearby Gap retail stores, and explore the full site navigation and category tree.
petsmart.com API
Search for pet products, browse categories, and get detailed information including reviews all in one place, while also finding nearby PetSmart stores and exploring pet taxonomy to discover products tailored to your pet type. Quickly compare products, read customer feedback, and locate your nearest store to shop for everything your pet needs.
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.