Discover/Orchestral Tools API
live

Orchestral Tools APIorchestraltools.com

Access the Orchestral Tools catalog via API. Browse instruments, collections, and bundles by genre, series, and price. Get specs, highlights, and pricing data.

This API takes change requests — .
Endpoint health
verified 2h ago
get_product_details
get_free_instruments
get_filter_options
get_price
add_to_cart
7/7 passing latest checkself-healing
Endpoints
7
Updated
28d ago

What is the Orchestral Tools API?

The Orchestral Tools API provides 7 endpoints for querying the orchestraltools.com product catalog of virtual instruments, sample libraries, collections, and bundles. Using get_all_products, you can filter by genre, series, product type, and maximum EUR price across paginated results. Each product object exposes fields including title, price_eur, type, series, genres, slug, and url, with deeper metadata available via get_product_details.

Try it
Page number for pagination (1-based).
Filter by product type.
Filter by genre. Values from get_filter_options genres (e.g. Strings, Brass, Woodwinds, Percussion, Piano, Choir, Epic, Full Orchestra).
Search query for product titles and descriptions. Use * for all products.
Filter by product series. Values from get_filter_options series (e.g. Berlin Strings, Metropolis Ark, Artist Series).
Maximum price in EUR to filter by.
api.parse.bot/scraper/6769fe36-75e0-47c7-b812-38aaabf0646e/<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/6769fe36-75e0-47c7-b812-38aaabf0646e/get_all_products?page=1&type=instrument&genre=Strings&query=*&series=Berlin+Strings&price_max=500' \
  -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 orchestraltools-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.

"""Orchestral Tools SDK — browse catalog, check pricing, manage cart."""
from parse_apis.orchestral_tools_api import OrchestralTools, ProductType, ProductNotFound

client = OrchestralTools()

# Browse available filter options to see what genres and series exist.
filters = client.filters.get()
print("Available genres:", ", ".join(opt.label for opt in filters.genres[:5]))

# Search for string instruments under €200.
for product in client.products.search(type=ProductType.INSTRUMENT, genre="Strings", price_max=200, limit=3):
    print(f"{product.title} — €{product.price_eur} ({product.series})")

# Fetch full details for a specific product by slug, then check its price.
detail = client.products.get(slug="berlin-strings")
pricing = detail.price()
print(f"{detail.title}: {pricing.price} cents (base {pricing.base}), Kontakt: {pricing.has_kontakt}")

# Add the product to a guest cart.
cart = detail.add_to_cart()
print(f"Cart errors: {cart.errors}, messages: {cart.messages}")

# List all bundles available in the catalog.
for bundle in client.products.bundles(limit=3):
    print(f"Bundle: {bundle.title} — €{bundle.price_eur}")

# Explore free instruments from SINEfactory.
for inst in client.freeinstruments.list(limit=3):
    print(f"Free: {inst.title} — {inst.sub_title}")

# Handle a product that doesn't exist.
try:
    client.products.get(slug="nonexistent-product-xyz")
except ProductNotFound as exc:
    print(f"Product not found: {exc.slug}")

print("Exercised: products.search, products.get, product.price, product.add_to_cart, products.bundles, freeinstruments.list, filters.get")
All endpoints · 7 totalmissing one? ·

Full-text search across the Orchestral Tools product catalog with optional filters for type, genre, series, and price. Returns paginated results ordered by relevance. Each product summary exposes a slug for detail lookup. Server-side filtering is limited to the declared params; finer filtering is client-side over the returned list.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
typestringFilter by product type.
genrestringFilter by genre. Values from get_filter_options genres (e.g. Strings, Brass, Woodwinds, Percussion, Piano, Choir, Epic, Full Orchestra).
querystringSearch query for product titles and descriptions. Use * for all products.
seriesstringFilter by product series. Values from get_filter_options series (e.g. Berlin Strings, Metropolis Ark, Artist Series).
price_maxnumberMaximum price in EUR to filter by.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "total": "integer, total number of matching products",
    "products": "array of product summary objects with id, store_id, slug, title, sub_title, price_eur, type, series, genres, studio, url, and other metadata"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 796,
      "products": [
        {
          "id": "3045",
          "url": "https://www.orchestraltools.com/metropolis-ark-3?t=instruments",
          "slug": "metropolis-ark-3",
          "type": "instrument",
          "title": "Low Brass",
          "genres": [
            "Brass"
          ],
          "series": "Metropolis Ark",
          "studio": "Teldex Scoring Stage",
          "store_id": "3472",
          "price_eur": 41,
          "sub_title": null,
          "product_id": "OT-0003045"
        }
      ]
    },
    "status": "success"
  }
}

About the Orchestral Tools API

Catalog Search and Filtering

get_all_products is the primary catalog endpoint. It accepts filters for type (instrument, collection, or bundle), genre, series, query, and price_max in EUR, and returns paginated results with a total count alongside an array of product objects. Valid genre and series values — such as Strings, Brass, Berlin Strings, or Metropolis Ark — are discoverable via get_filter_options, which returns label/value pairs for genres, series, and studios. Use the value field from those results directly as filter parameters.

Product Details and Pricing

get_product_details accepts a slug (e.g. berlin-strings, metropolis-ark-3) and returns the full product record: specs (file size, system requirements, supported formats), highlights (an array of feature strings from the product page), description, series, and price_eur. Critically, it also returns hub_product_id, which is required by both get_price and add_to_cart. The get_price endpoint takes that ID and returns base and price in cents, has_kontakt (boolean), product_type, and is_user_price — useful for detecting sale pricing or user-account-specific tiers.

Bundles, Free Instruments, and Cart

get_bundles retrieves all current bundles with their metadata including price_eur, series, and description. get_free_instruments returns free offerings from SINEfactory and other free-tier products — each object includes title, sub_title, slug, url, image, and a price_eur of 0. The add_to_cart POST endpoint accepts a product name and store_id (the hub_product_id) and returns the resulting cart state, including any errors and messages arrays.

Reliability & maintenanceVerified

The Orchestral Tools API is a managed, monitored endpoint for orchestraltools.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when orchestraltools.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 orchestraltools.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
2h ago
Latest check
7/7 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
  • Build a price-tracking tool that monitors EUR prices for specific instruments using get_price and alerting on changes between base and price.
  • Generate a filterable catalog UI for orchestral libraries by series and genre using get_all_products and get_filter_options.
  • Aggregate all free virtual instruments available on orchestraltools.com via get_free_instruments for a curated free-tools directory.
  • Extract system requirements and supported formats for every product in a series using get_product_details specs field.
  • Compare bundle contents and pricing against individual instrument prices by combining get_bundles with get_product_details for each child instrument.
  • Automate cart population for a custom storefront or purchasing workflow using add_to_cart with hub_product_ids from get_product_details.
  • Surface Kontakt compatibility data across the catalog by checking has_kontakt from get_price responses.
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 Orchestral Tools have an official developer API?+
Orchestral Tools does not publish an official public developer API or documented REST interface. This Parse API provides structured access to catalog and pricing data from orchestraltools.com.
What does get_product_details return beyond what get_all_products provides?+
get_product_details returns the full specs object (file size, system requirements, supported formats), a highlights array, description, and the hub_product_id needed for get_price and add_to_cart. For collection-type products, it also returns an all_instruments array listing child instruments. The catalog endpoint get_all_products returns lighter metadata without specs or highlights.
How do I get valid values for the genre and series filters in get_all_products?+
Call get_filter_options first. It returns arrays of objects with label and value fields for genres, series, and studios. Use the value string from those results as the genre or series parameter in get_all_products. The values are backtick-wrapped strings that must match exactly.
Does the API expose user account data, library ownership, or download history?+
Not currently. The API covers catalog data, pricing, product specs, and cart operations. It does not expose user account details, owned licenses, download links, or order history. You can fork it on Parse and revise to add endpoints targeting those account-specific pages.
Is there a way to retrieve audio demos or sample previews for products?+
Not currently. The API returns product metadata including titles, highlights, specs, and images, but audio preview files or embed URLs are not included in any response field. You can fork it on Parse and revise to add the missing endpoint for audio demo data.
Page content last updated . Spec covers 7 endpoints from orchestraltools.com.
Related APIs in MusicSee all →
thomann.de API
Search and browse Thomann's music store catalog to find products by category, view detailed specifications and pricing, read customer reviews, and filter results to discover the instruments and gear you're looking for. Access comprehensive product information including descriptions, availability, and ratings all in one place.
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.
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.
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.
spitfireaudio.com API
Browse Spitfire Audio's complete sample library catalog. Retrieve product listings, detailed descriptions, pricing, system requirements, and Trustpilot customer reviews for any library in the store.
theordinary.com API
Browse and search The Ordinary's complete product catalog by category or ingredients. View detailed product information including formulas and key actives, apply filters by product type, concern, or ingredient, and read customer reviews to compare and evaluate products.
juno.co.uk API
Search and browse Juno Records' catalog to find music across genres, discover new releases and bestsellers, and get detailed product information with autocomplete suggestions. Perfect for exploring vinyl, CDs, and digital music with real-time access to charts and recommendations.
torob.com API
Search for products and compare prices across thousands of sellers on Torob.com, with access to detailed product specs, seller information, and price history. Browse categories, discover similar items, and explore store inventories to find the best deals.