Reverb
Reverb is an online marketplace for buying and selling musical instruments, recording gear, and related music equipment.
- Base URL:
https://api.reverb.com/api - Auth: OAuth 2.0 client-credentials — the tool fetches a token from
https://reverb.com/oauth/tokenusing yourclientId/clientSecret, then calls the API.
Operations
get_articles— GET /articlesget_articles_categories— GET /articles/categories — List of all article categoriesget_categories— GET /categories — List of supported product categoriesget_categories_flat— GET /categories/flatget_categories_taxonomy— GET /categories/taxonomy — Full taxonomy tree of categories including middle categoriesget_categories_product_type_category— GET /categories/{product_type}/{category} — Get subcategory details
Inputs
clientId/clientSecret— your reverb OAuth app credentialsscope— OAuth scopes (optional; defaults from the spec)operation— one of the operations above- path parameters when an operation's path contains
{...} query— optional JSON object of query paramsbody— JSON object for create/update ops
Example
operation: get_articles
clientId: <your client id>
clientSecret: <your client secret>
Publishes
The keys a later task may reference as {{taskName.key}}. Referencing anything not listed here resolves to nothing at run time.
erroroperationresultstatus
Input Properties
Every property this tool accepts, from its own tool.iml.
| Property | Type | Required | Default | Description |
|---|---|---|---|---|
clientId |
string | yes | — | OAuth client ID for reverb. |
clientSecret |
string | yes | — | OAuth client secret for reverb. |
operation |
string | yes | — | One of: get_articles, get_articles_categories, get_categories, get_categories_flat, get_categories_taxonomy, get_categories_product_type_category |
scope |
string | no | public read_feedback read_listings read_lists read_messages read_offers read_orders read_payouts read_profile write_feedback write_listings write_listings_for_others write_lists write_messages write_offers write_orders write_profile write_reviews |
OAuth scopes (space-separated); default from the spec. |
category |
string | no | — | Path parameter category (required by some operations). |
product_type |
string | no | — | Path parameter product_type (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |