Get Actions
get_actionsList recommended actions for a brand from Trakkr's unified queue.
This is the canonical "what should the brand do" surface. Every signal in Trakkr (site audit, crawler, prompt monitoring, citations, competitors, traffic, reddit, diagnose) flows into one prioritised queue.
Returns per action: title, description, detail, first_step, category, action_type, effort, impact, priority_score, priority_level, status, source, affected_models, affected_query_count, action_data (the raw supporting evidence, shape varies by action_type), and a deep_link into the app. Plus, when the action has them: family (the verb family: fix | refresh | create | earn | discuss | optimize | setup | play), page_id and page_url (the page the work is on), and result (the measured before/after outcome: verdict, summary, primary_metric, window_days, measured_at, rolled_back). result is null until the measurement window closes; get_results lists measured results on their own.
Common recipes:
AI-search technical audit: get_actions(brand_id, source="site_audit,crawler_monitoring", category="technical")
Crawler analyst view: get_actions(brand_id, lens="crawler")
Quick wins: get_actions(brand_id, quick_win=True)
Diagnose follow-ups: get_actions(brand_id, source="diagnose")
Args: brand_id: The brand (required). status: 'open' (default; pending+in_progress+snoozed), 'active' (adds completed), or a literal status. category: Comma-separated. content | technical | competitive | optimization | citation | setup | reddit | diagnose. source: site_audit | crawler_monitoring | prompt_monitoring | citation_monitoring | diagnose | competitor_tracking | content_ideas | traffic_analytics | reddit | setup | manual | ai_synthesizer. action_type: Filter to one canonical action_type, e.g. 'add_llms_txt', 'add_schema_markup', 'unblock_ai_crawlers', 'fix_rendering_for_crawlers', 'create_content_for_gap'. lens: Product-lens shortcut (e.g. 'crawler' = crawler-tab view). quick_win: If true, only high-impact / low-effort actions. search: Text search across title, description, source, action_type. url: Filter to actions scoped to this URL or path. sort_by: priority_score | created_at | updated_at. sort_dir: asc or desc. limit: 1-200. Default 50. offset: Pagination offset.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | ||
| lens | No | ||
| limit | No | ||
| offset | No | ||
| search | No | ||
| source | No | ||
| status | No | open | |
| sort_by | No | priority_score | |
| brand_id | Yes | ||
| category | No | ||
| sort_dir | No | desc | |
| quick_win | No | ||
| action_type | No | ||
| user_intent | No | Analytics hint: the user's latest request in one short sentence. Omit secrets and prior chat. |