Reverb
Connector for the reverb API, generated deterministically from its OpenAPI spec (endpoints, auth, and methods match the spec exactly — nothing is invented).
- 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>