Discover/Thomann API
live

Thomann APIthomann.de

Access Thomann's music store catalog via API. Search products, browse categories, retrieve specs, pricing, availability, and customer reviews.

Endpoint health
verified 6h ago
search_products
get_all_categories
get_category_listings
get_product_reviews
filter_products
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the Thomann API?

The Thomann API exposes 6 endpoints covering product search, detailed specs, category browsing, and customer reviews from one of Europe's largest music retail catalogs. search_products returns paginated results with price, availability, and rating data across the full Thomann inventory. get_product_details delivers EAN barcodes, brand, model, description, and a numeric rating score for any individual product.

Try it
Page number.
Max results per page. Accepted values: 25, 50, 100.
Search keyword.
api.parse.bot/scraper/6af99b32-0117-475c-82e4-622fd744b176/<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/6af99b32-0117-475c-82e4-622fd744b176/search_products?page=1&limit=25&query=guitar' \
  -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 thomann-de-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.thomann_api import Thomann, ProductSummary, Product, Category, Review

thomann = Thomann()

# Search for acoustic guitars
for product in thomann.productsummaries.search(query="acoustic guitar", limit=3):
    print(product.name, product.brand, product.price, product.currency, product.rating)

# Filter products by price range and manufacturer
for product in thomann.productsummaries.filter(query="piano", max_price=500, limit=3):
    print(product.name, product.price, product.availability)

# Get full product details from a search result
for result in thomann.productsummaries.search(query="gibson sg", limit=1):
    detail = result.details()
    print(detail.name, detail.description, detail.ean)
    # Get reviews for the product
    for review in detail.reviews.list(limit=3):
        print(review.author, review.headline, review.stars, review.text)

# Browse categories and list products in one
for cat in thomann.categories.list(limit=5):
    print(cat.name, cat.url)

guitars = Category(_api=thomann, name="Guitars and Basses", url="guitars_and_basses.html")
for item in guitars.products(limit=3):
    print(item.name, item.brand, item.price)
All endpoints · 6 totalmissing one? ·

Full-text search over Thomann's product catalog by keyword. Returns paginated product summaries including price, rating, and availability. Results are ordered by relevance. Pagination via page number; each page returns up to `limit` items.

Input
ParamTypeDescription
pageintegerPage number.
limitintegerMax results per page. Accepted values: 25, 50, 100.
queryrequiredstringSearch keyword.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "total": "integer total number of matching products",
    "products": "array of ProductSummary objects"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 677,
      "products": [
        {
          "id": 362956,
          "url": "https://www.thomannmusic.com/gibson_sg_standard_eb_462537.htm?type=quickSearch",
          "name": "Gibson SG Standard EB",
          "brand": "Gibson",
          "image": "https://thumbs.static-thomann.de/thumb/thumb400x400/pics/prod/462537.jpg",
          "model": "SG Standard EB",
          "price": "1444.0000",
          "rating": 9.6078,
          "currency": "USD",
          "features": [
            "Body: Mahogany"
          ],
          "item_number": "462537",
          "availability": "In stock",
          "review_count": 51
        }
      ]
    },
    "status": "success"
  }
}

About the Thomann API

Product Search and Filtering

search_products accepts a query string and returns paginated product summaries including id, item_number, name, brand, model, url, price, currency, availability, rating, and review_count. The limit parameter accepts 25, 50, or 100 results per page. For narrower queries, filter_products adds min_price, max_price, manufacturer, and category_url parameters on top of keyword search, giving you multi-axis filtering in a single call.

Product Details and Reviews

get_product_details takes a product page URL or slug and returns the full record: ean, image, price, rating (out of 10), currency, and structured description fields. Reviews are handled separately by get_product_reviews, which accepts a Thomann item_number (the product_id field) and returns paginated review objects containing author, date, rating_percent, stars, and review text. The item_number used here maps directly to the item_number field returned by search_products.

Category Navigation

get_all_categories takes no inputs and returns the top-level category tree as an array of objects with name and url. Those url slugs feed directly into get_category_listings, which paginates all products under a given category and returns the same product summary shape as search. This makes it straightforward to crawl a specific department — guitars, studio monitors, or DJ gear — without constructing search queries.

Reliability & maintenanceVerified

The Thomann API is a managed, monitored endpoint for thomann.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when thomann.de 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 thomann.de 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
6h ago
Latest check
6/6 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 Thomann price changes on specific products using get_product_details price and currency fields
  • Build a music gear price comparison tool by matching EAN barcodes from get_product_details against other retailers
  • Aggregate customer sentiment by collecting review stars and text fields from get_product_reviews across product lines
  • Index a specific instrument category for a niche storefront using get_category_listings with a category slug from get_all_categories
  • Filter in-stock products by manufacturer and price band using the manufacturer, min_price, and max_price params on filter_products
  • Monitor brand availability and rating trends by periodically calling search_products for a manufacturer name
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 Thomann offer an official developer API?+
Thomann does not publish a public developer API or documented data feed for third-party use.
What does `get_product_reviews` return and how is pagination handled?+
get_product_reviews requires a product_id matching the item_number from search results. Each review object includes author, date, rating_percent, stars, and full review text. Pagination is controlled by the page parameter; the response echoes back the current page number alongside the reviews array.
Does `get_product_details` always return an EAN barcode?+
The ean field is returned when Thomann lists it for the product, but it can be null. Coverage varies by product type — accessories and bundled items are less likely to carry a barcode than standalone instruments or electronics.
Does the API cover Thomann's used or outlet products?+
Not currently. The API covers new catalog products across search, category listings, and product detail pages. You can fork it on Parse and revise it to add an endpoint targeting Thomann's outlet or used-gear listings.
Can I retrieve product availability by warehouse location or shipping region?+
The availability field in product summaries reflects the general stock status shown on the product listing. Region-specific shipping lead times and per-warehouse stock splits are not broken out as separate fields. You can fork the API on Parse and revise it to add more granular availability data if the source exposes it for your target region.
Page content last updated . Spec covers 6 endpoints from thomann.de.
Related APIs in EcommerceSee all →
thomann.pt API
Browse Thomann's discounted B-Stock and blowout inventory by category or subcategory, search for deals by keyword, and retrieve full product details including specifications, images, pricing, and availability. Also surfaces the current featured daily deal.
orchestraltools.com API
Browse and search Orchestral Tools' collection of virtual instruments, samples, and bundles by series, genre, and price to find exactly what you need. Add products to your cart and view detailed specifications, pricing, and availability for each instrument.
amazon.de API
Search Amazon.de for products, retrieve detailed product information, customer reviews, seller and offer data, bestseller lists, and autocomplete suggestions.
smythstoys.com API
Search and retrieve detailed product information from Smyths Toys' catalog across UK, Ireland, Germany, and Netherlands locations. Find toy availability, pricing, and specifications in real-time across multiple regions.
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.
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.
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.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.