01
Create an access key
Sign up, choose the workspace you want to track, and copy your organization access key.
For content teams
Plan your calendar with real keyword volume, find the gaps where competitors get cited by AI, and measure which of your pages ChatGPT, Claude, Gemini, and Perplexity actually quote.
No credit card required.Track visibility across
Content teams still need to know what people search for and where they have coverage holes. Trackee pairs keyword research and volume with AI citation data, so you can plan pages that rank on Google and get pulled into AI answers.
Pull search volume and difficulty for any query so you can plan a calendar around what people actually look for.
Turn one seed into related terms and questions, so each brief covers the topic the way readers phrase it.
See the prompts where competitors get cited by AI and you don't, then brief the content that closes the gap.
Track which of your pages ChatGPT, Claude, Gemini, and Perplexity quote, so you know what to double down on.
GET /v1/keywords
Send a query and country, get back related keywords with volume and difficulty.
curl -G https://api.trackee.dev/v1/keywords \
-H "x-access-key: YOUR_API_KEY" \
-d "query=content marketing" \
-d "country=us"{
"query": "content marketing",
"country": "us",
"keywords": [
{ "keyword": "content marketing", "volume": 74000, "difficulty": 68 },
{ "keyword": "content marketing strategy", "volume": 18100, "difficulty": 54 },
{ "keyword": "content marketing examples", "volume": 6600, "difficulty": 41 }
]
}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"}'Trackee returns search volume and difficulty for any query and country through the Keyword Research API, so you can plan a calendar around real demand.
Start with a seed term and expand it with the Keyword Ideas API to get the related terms and questions your readers actually type.
Yes. The AI Citations API shows the pages ChatGPT, Claude, Gemini, and Perplexity quote, so you know which content is feeding their answers.
No. Use the dashboard, the REST API, the hosted MCP, or the coding skill against the same data. See the API docs to get started.