Resolve Taxonomy IDs
suggestResolve a name or prefix to APITube taxonomy IDs so you can use them in the search_news tool's filters.
The search_news tool's most precise filters require IDs you cannot guess:
entity.id — numeric (persons, organizations, locations, brands, events...)
category.id — IPTC slug, e.g. "medtop:04000000"
topic.id — slug
industry.id — numeric
Use this tool FIRST to look those IDs up, then pass them into search_news.
USAGE:
type: which taxonomy to autocomplete — one of "entities", "categories", "topics", "industries".
prefix: the name (or its beginning) to search, e.g. "Tesla", "Elon", "spo".
Returns an array of matches; take the id of the best match and put it into search_news:
suggest({ type: "entities", prefix: "Tesla" }) → [{ id: 12345, name: "Tesla, Inc.", ... }]
search_news({ entity: { id: "12345" } })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | Yes | Which taxonomy to autocomplete. | |
| prefix | Yes | Name or prefix to search, e.g. "Tesla", "Elon", "spo". |