Discover/sweetwater.com API
live

sweetwater.com APIwww.sweetwater.com

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

Endpoints
2
Updated
3mo ago
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: 'price_asc', 'price_desc', 'rating', or empty string for relevance
Filter by top-level category (e.g., 'Guitars', 'Studio & Recording', 'Keyboards & Synthesi
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.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cc4608df-e0c4-4afc-ac6a-8c8cde480aff/search_products?page=1&query=shure+sm7b&hits_per_page=3&in_stock_only=true' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Search for products by keyword with optional filtering by brand, category, stock availability, and sorting options. Returns paginated results with product details including pricing, ratings, and availability.

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: 'price_asc', 'price_desc', 'rating', or empty string for relevance
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 object_id, name, brand, description, url, image_url, price, retail_price, catalog_price, condition, in_stock, is_available, free_shipping, rating_average, rating_count, and categories",
    "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": "shure sm7b",
      "products": [
        {
          "url": "https://www.sweetwater.com/store/detail/SM7B--shure-sm7b-cardioid-dynamic-vocal-microphone",
          "name": "SM7B Dynamic Cardioid Vocal Microphone",
          "brand": "Shure",
          "price": 395,
          "in_stock": true,
          "condition": "New",
          "image_url": "https://media.sweetwater.com/m/products/image/6d2c512a92Rov0eryrfK2jdkFSLhFkOUiy3nNCLK.jpg",
          "object_id": "SM7B",
          "categories": [
            "Studio & Recording"
          ],
          "description": "Dynamic Cardioid Vocal Microphone with Bass Roll-off, Presence Boost, Swivel Mount, and Windscreen",
          "is_available": true,
          "rating_count": 257,
          "retail_price": 549,
          "catalog_price": 395,
          "free_shipping": true,
          "rating_average": 5
        }
      ],
      "total_hits": 15,
      "total_pages": 1,
      "current_page": 0,
      "hits_per_page": 42,
      "available_brands": [
        "Shure",
        "LM Cases",
        "On-Stage"
      ],
      "available_categories": [
        "Studio & Recording",
        "Video Equipment"
      ]
    },
    "status": "success"
  }
}

About the sweetwater.com 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.

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.

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,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 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 www.sweetwater.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.
Sweetwater API – Product Search & Pricing · Parse