Hubhopper
Hubhopper is a podcast hosting, distribution, and discovery platform for creating and publishing audio shows.
- Base URL:
https://apis.hubhopper.com/partner - Auth:
header:x-api-key(pass your key via theapiKeyinput)
Operations
get_categories— GET /categories — Get the list of all content categories.get_categories_categoryid— GET /categories/{categoryId} — Get specific content category.get_categories_categoryid_podcasts— GET /categories/{categoryId}/podcasts — Get a list of all podcasts under a category.get_podcasts— GET /podcasts — Get the list of all podcasts.get_podcasts_podcastid— GET /podcasts/{podcastId} — Get a single Podcast.get_podcasts_podcastid_episodes— GET /podcasts/{podcastId}/episodes — Get a list of all episodes under a podcast.
Inputs
apiKey— your hubhopper API keyoperation— 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_categories
apiKey: <your key>
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 |
|---|---|---|---|---|
apiKey |
string | yes | — | DEPRECATED — bind an API Key credential to the task with credentialName instead. A key pasted here is stored in the workflow definition in clear and appears in every export of it. Still honoured for workflows built before the change. |
operation |
string | yes | — | One of: get_categories, get_categories_categoryid, get_categories_categoryid_podcasts, get_podcasts, get_podcasts_podcastid, get_podcasts_podcastid_episodes |
categoryId |
string | no | — | Path parameter categoryId (required by some operations). |
podcastId |
string | no | — | Path parameter podcastId (required by some operations). |
query |
string | no | — | Optional query params as a JSON object string, e.g. {"limit": 10}. |