Create a tracker
create_trackerCreate a tracker in draft. It measures nothing yet: call start_tracker to launch it against the prepaid credit balance. Validation rules and messages are the same as the app configurator. Omitted, next_survey_at means the first survey runs at start_tracker. For a single reading with nothing running afterwards, set frequency to on_demand: start_tracker runs one survey, and the next ones come from survey_now.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Display name of the tracker. | |
| engines | Yes | The AI engines surveyed. A check is priced per engine, in USD: chatgpt 0.10, claude 0.20, gemini 0.10, perplexity 0.10, mistral 0.10, grok 0.20. Claude and Grok read more sources per answer, and their check carries that. The amount for the whole tracker comes back as cost_per_survey_minor, so quote that one to the person rather than adding these up. | |
| prompts | Yes | The questions asked to the AI engines at every survey, phrased exactly as a customer would ask them. | |
| analysts | No | The lenses that score every survey. keyword_presence and share_of_voice are deterministic; sentiment and custom_prompt are AI analysts billed per analyzed response. | |
| keywords | No | Names to detect in the answers: your brand and the names you compare against. Flag yours as favorite. | |
| discovery | No | Suggest new keywords spotted in the answers. | |
| frequency | Yes | How often a survey runs. on_demand puts the tracker on no schedule at all: starting it runs one survey, and every survey after that is one you ask for with survey_now. Pick it for a one-off reading, or whenever the person wants to decide each time; the other values keep a survey running on their own pace. | |
| project_id | No | The project the tracker is filed under: the UUID of a project of the account (call list_projects), or "default" for none. Pure organization, editable at any time. Omitted on creation the tracker files under Default; omitted on update the project does not change. | |
| resolution | Yes | Repetitions of every question per engine and survey: hd=1, full_hd=3, 4k=6, 8k=9. Answers are stochastic; more repetitions sharpen the rates. | |
| custom_prompt | No | The instruction of the custom_prompt analyst. Required when that analyst is selected. | |
| next_survey_at | No | When the next survey runs, ISO 8601, strictly in the future; read as UTC without an offset. Later surveys keep that day and time at the pace of the frequency. It goes with a frequency that has a pace: on on_demand, leave it out and call survey_now when the person wants a reading. | |
| notify_on_survey | No | Email the account owner and managers each time a survey closes with fresh data, so the results reach them on their own. On by default; send false to keep this tracker silent. |