Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.particle.pro/llms.txt

Use this file to discover all available pages before exploring further.

Navigate the topic taxonomy. Without parent_slug, returns the top-level roots (Politics, Business, Technology, etc.). With parent_slug set, returns the direct children of that topic. Topic slugs use a parent/child convention (e.g. politics/elections) and let agents browse the hierarchy to find well-named categories.

Inputs

FieldTypeRequiredDefaultDescription
parent_slugstringnoTopic slug or ID. Returns the direct children of this topic. Omit for top-level roots.
limitinteger (1–100)no50Topics per page.
cursorstringnoOpaque pagination cursor from a previous response.

Output

A markdown document with an ## Topics (N) heading and a flat bullet list — one bullet per topic, formatted **Name** — slug: <slug> (with — <ancestry> appended when an ancestry path is available). When more pages exist, a horizontal rule and a More topics available — pass cursor=<cursor> to paginate. line are appended; pass that cursor value back as the cursor input. Sample (limit=5):
## Topics (5)

- **Society** — slug: society
- **Government** — slug: government
- **Business** — slug: business
- **Politics** — slug: politics
- **Media** — slug: media
---

More topics available — pass cursor=r.4gfFC9 to paginate.
The string after slug: is what you pass back as parent_slug to drill into a topic’s children.

Example

Agent calls: entities/browse_topics {}
            → reads "slug: politics" → "politics"

Agent calls: entities/browse_topics { "parent_slug": "politics" }
            → returns child topics like "politics/elections"