01
Create an access key
Sign up, choose the workspace you want to track, and copy your organization access key.
Workflow
Schedule checks, build a clean history, and pull the numbers into your own dashboards, Google Sheets, Looker, or BI. No manual screenshots.
No credit card required.Track visibility across
Reporting eats hours when you copy numbers out of a tool by hand every week. Trackee runs your rank and AI-visibility checks on a schedule and hands back clean JSON, so your dashboards and spreadsheets stay current on their own.
Set your rank and AI-visibility checks to run daily or weekly, so fresh numbers are always waiting.
Every run is stored on a timeline, so you can chart trends over 7, 30, or 90 days without keeping your own database.
Read finished data through one endpoint and drop it straight into a dashboard, no scraping or parsing.
Feed the same data into Google Sheets, Looker, or any BI tool that can call a REST API.
GET /v1/brands/{brandId}/timeline
Ask for a date range and get back a clean series of visibility points.
curl https://api.trackee.dev/v1/brands/brand_acme/timeline?range=30d \
-H "x-access-key: YOUR_API_KEY"{
"brandId": "brand_acme",
"range": "30d",
"points": [
{ "date": "2026-08-01", "coverage_pct": 48, "share_of_voice": 21, "avg_position": 3.4 },
{ "date": "2026-08-15", "coverage_pct": 55, "share_of_voice": 26, "avg_position": 2.9 },
{ "date": "2026-08-30", "coverage_pct": 61, "share_of_voice": 30, "avg_position": 2.4 }
]
}From access key to your first result in minutes.
01
Sign up, choose the workspace you want to track, and copy your organization access key.
02
Pass a brand, prompt, or keyword to one endpoint. Trackee runs the check across search and AI.
03
Use structured visibility, citation, and competitor data in your product, agent, or dashboard.
A first-party Claude Code skill, a hosted MCP server, and a plain REST API. All official, all maintained.
Add Trackee instructions to your coding agent so it can plan and run visibility checks directly.
npx skills add trackeeConnect any MCP-compatible client to Trackee's hosted tools with one organization access key.
{
"mcpServers": {
"trackee": {
"url": "https://mcp.trackee.dev/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Call the same visibility data from your own agent, product, workflow, or server-side application.
curl -X POST https://api.trackee.dev/v1/visibility \
-H "x-access-key: YOUR_API_KEY" \
-H "content-type: application/json" \
-d '{"brand":"Acme","prompt":"best project management software"}'Schedule your checks with a tracker so runs happen on their own, then read the stored timeline whenever your dashboard refreshes.
Yes. Trackee returns clean JSON from the API, so any tool that can call a REST endpoint can pull it in on a schedule.
Yes. The timeline stores AI-answer coverage and share of voice too, so you can chart both from one source. See AI visibility monitoring.
No. Every scheduled run is kept for you, so you can pull a 30- or 90-day range on demand without your own database. See pricing for retention.