Discover/Sweetwater API
live

Sweetwater APIsweetwater.com

Search Sweetwater's catalog of musical instruments and audio gear. Get pricing, availability, ratings, brand filters, and autocomplete suggestions via 2 endpoints.

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

What is the Sweetwater API?

The Sweetwater API gives developers access to Sweetwater's catalog of musical instruments, audio equipment, and accessories through 2 endpoints. The search_products endpoint returns structured product data including price, retail price, condition, ratings, stock availability, and image URLs, with filtering by brand, category, and sort order. The get_autocomplete endpoint returns ranked search suggestions for partial queries.

Try it
Page number (0-indexed)
Filter by brand name (e.g., 'Fender', 'Shure', 'Yamaha')
Search query (e.g., 'fender stratocaster', 'shure sm7b', 'keyboard')
Sort order for results
Filter by top-level category (e.g., 'Guitars', 'Studio & Recording', 'Keyboards & Synthesizers')
Number of results per page (1-100)
Only return in-stock products
api.parse.bot/scraper/cc4608df-e0c4-4afc-ac6a-8c8cde480aff/<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/cc4608df-e0c4-4afc-ac6a-8c8cde480aff/search_products?page=0&brand=Fender&query=guitar&sort_by=relevance&category=Guitars&hits_per_page=5&in_stock_only=False' \
  -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 sweetwater-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.sweetwater_product_search_api import Sweetwater, Product, AutocompleteResult, Sort

sweetwater = Sweetwater()

# Get autocomplete suggestions for a partial query
result = sweetwater.autocompleteresults.get(query="drum", max_results=5)
print(result.query, result.count)
for suggestion in result.suggestions:
    print(suggestion)

# Search for products sorted by rating, filtered to in-stock only
for product in sweetwater.products.search(query="microphone", sort_by=Sort.RATING, in_stock_only=True, limit=5):
    print(product.name, product.brand, product.price, product.rating_average, product.in_stock)
All endpoints · 2 totalmissing one? ·

Full-text search over Sweetwater's product catalog. Supports filtering by brand, category, and stock availability, plus sorting by price or rating. Paginates via a zero-based page index. Each product carries final/retail/catalog pricing, stock and shipping status, average rating, and category membership. The response also surfaces available brands and categories for the current query, enabling progressive filter refinement.

Input
ParamTypeDescription
pageintegerPage number (0-indexed)
brandstringFilter by brand name (e.g., 'Fender', 'Shure', 'Yamaha')
queryrequiredstringSearch query (e.g., 'fender stratocaster', 'shure sm7b', 'keyboard')
sort_bystringSort order for results
categorystringFilter by top-level category (e.g., 'Guitars', 'Studio & Recording', 'Keyboards & Synthesizers')
hits_per_pageintegerNumber of results per page (1-100)
in_stock_onlybooleanOnly return in-stock products
Response
{
  "type": "object",
  "fields": {
    "query": "search query string",
    "products": "array of product objects with pricing, availability, rating, and category info",
    "total_hits": "total number of matching products",
    "total_pages": "total number of pages available",
    "current_page": "current page number (0-indexed)",
    "hits_per_page": "number of results per page",
    "available_brands": "array of brand name strings available for filtering",
    "available_categories": "array of category name strings available for filtering"
  },
  "sample": {
    "data": {
      "query": "guitar",
      "products": [
        {
          "url": "https://www.sweetwater.com/store/detail/GLXD16p--shure-glxd16-digital-wireless-guitar-pedal-system",
          "name": "GLXD16+ Digital Wireless Guitar Pedal System",
          "brand": "Shure",
          "price": 599,
          "in_stock": true,
          "condition": "New",
          "image_url": "https://media.sweetwater.com/m/products/image/790a6ce3afld3wCXNB8TMT3fcoa8UU6ZnvvghOsH.jpg",
          "object_id": "GLXD16p",
          "categories": [
            "Live Sound & Lighting"
          ],
          "description": "GLXD6+ Guitar Pedal Receiver, GLXD1+ Bodypack, and WA305 Guitar Cable",
          "is_available": true,
          "rating_count": 87,
          "retail_price": 749,
          "catalog_price": 599,
          "free_shipping": true,
          "rating_average": 4.5
        }
      ],
      "total_hits": 27577,
      "total_pages": 1000,
      "current_page": 0,
      "hits_per_page": 5,
      "available_brands": [
        "Fender",
        "PRS",
        "Ibanez"
      ],
      "available_categories": [
        "Guitars",
        "Bass",
        "Accessories"
      ]
    },
    "status": "success"
  }
}

About the Sweetwater API

Product Search

The search_products endpoint accepts a required query string and several optional filters. You can narrow results by brand (e.g., 'Fender', 'Shure'), category (e.g., 'Guitars', 'Keyboards & Synthesizers'), and set in_stock_only: true to exclude unavailable items. Sorting is controlled via sort_by, which accepts 'price_asc', 'price_desc', 'rating', or an empty string for relevance ordering. Pagination is 0-indexed using page and hits_per_page (1–100 results per page).

Product Response Fields

Each product object in the products array includes object_id, name, brand, description, url, image_url, price, retail_price, catalog_price, and condition. The response also returns total_hits, total_pages, current_page, and hits_per_page for pagination, plus available_brands and available_categories arrays you can use to populate filter UI elements dynamically.

Autocomplete

The get_autocomplete endpoint takes a partial query string and an optional max_results cap (1–20) and returns a suggestions array of matching search terms alongside a count field. This is useful for building search-as-you-type interfaces that surface relevant product names and categories before a full search is executed.

Reliability & maintenanceVerified

The Sweetwater API is a managed, monitored endpoint for sweetwater.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when sweetwater.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 sweetwater.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
3d 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
  • Compare price vs retail_price across guitar brands to identify discount patterns
  • Build an in-stock alert tool using in_stock_only filtering on a target product query
  • Populate a music gear price comparison page using price, brand, and image_url fields
  • Drive a search autocomplete widget using the get_autocomplete endpoint with max_results
  • Aggregate available_brands and available_categories to build a faceted browsing UI
  • Track new or used gear availability by checking the condition field across paginated results
  • Pull product URLs and descriptions for affiliate content or gear recommendation tools
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 Sweetwater have an official public developer API?+
Sweetwater does not publish a public developer API or documented data feed for third-party use. This Parse API provides structured access to catalog data that Sweetwater does not otherwise expose to developers.
What product fields does `search_products` return for each result?+
Each product object includes object_id, name, brand, description, url, image_url, price, retail_price, catalog_price, and condition. The response wrapper also includes total_hits, total_pages, available_brands, and available_categories for pagination and filter UI support.
Does the API return individual product reviews or review text?+
Not currently. The search_products endpoint returns aggregate product data including pricing and availability but does not expose individual user review text or review counts per product. You can fork this API on Parse and revise it to add an endpoint that retrieves per-product review content.
How does pagination work in `search_products`?+
Pagination is 0-indexed. Set page to the desired page number starting from 0, and use hits_per_page (between 1 and 100) to control page size. The response returns total_hits and total_pages so you can determine how many pages exist for a given query.
Can I retrieve a specific product by its ID or SKU?+
Not currently. The API supports keyword search via search_products and autocomplete via get_autocomplete, but does not expose a direct product-lookup endpoint by SKU, object ID, or URL. You can fork this API on Parse and revise it to add a dedicated product detail endpoint.
Page content last updated . Spec covers 2 endpoints from sweetwater.com.
Related APIs in EcommerceSee all →
guitarcenter.com API
Search Guitar Center's electric guitar catalog to instantly access product listings with pricing, customer reviews, and detailed specifications across different variants. Compare guitars and find the perfect instrument with complete product information all in one place.
musiciansfriend.com API
Browse and search Musician's Friend's catalog to find instruments, gear, and accessories with detailed product information, pricing, and real-time availability. Discover daily deals and filter products by category to compare options and find the best equipment for your musical needs.
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.
roland.com API
Search Roland's product catalog to find instruments, equipment, and accessories with detailed specs and availability. Browse product information, specifications, and details directly from Roland's US website to compare models and make informed purchasing decisions.
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.
pluginboutique.com API
Search and browse thousands of audio plugins across categories, brands, and deals, while discovering free products, new arrivals, and bundle offers. Get detailed information about specific plugins and find exactly what you need for your music production setup.
containerstore.com API
Search The Container Store's product catalog and get real-time autocomplete suggestions to find storage solutions and organizational products. Browse through available items with instant search results and product recommendations as you type.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.