action listennotes_get_related_searches { label: "Fetch related search terms" description: "Suggest related search terms. The results are more comprehensive than from `GET /typeahead`. This endpoint is available only in the PRO/ENTERPRISE plan." provider: listennotes method: GET path: "/related_searches" encoding: json input: { type: "object" properties: { q: { type: "string" } } required: ["q"] additionalProperties: false } output: { type: "object" required: ["terms"] properties: { terms: { type: "array" description: "Related search terms" items: { type: "string" } } } } }