01
Create an access key
Sign up, choose the workspace you want to track, and copy your organization access key.
Workflow
Pull keyword volume, ideas, and SERP data through one API to generate large sets of pages, then bulk-track how they rank and whether AI answers cite them.
No credit card required.Track visibility across
Programmatic SEO lives or dies on good input data and honest measurement. Trackee gives you the keyword and SERP feeds to build pages and the bulk tracking to see which ones actually land.
Pull volume, difficulty, and related ideas per seed so each generated page targets a real query.
Fetch who ranks now and what the results look like, so you build pages that match search intent.
Submit thousands of URL and keyword pairs in one job instead of checking rankings by hand.
See Google positions and whether ChatGPT, Claude, Gemini, and Perplexity cite your pages.
GET /v1/keywords/ideas
Pass a seed keyword and a country, get back ideas with volume to feed your page generator.
curl "https://api.trackee.dev/v1/keywords/ideas?seed=running+shoes&country=us" \
-H "x-access-key: YOUR_API_KEY"{
"seed": "running shoes",
"country": "us",
"ideas": [
{ "keyword": "best running shoes for flat feet", "volume": 8100 },
{ "keyword": "running shoes for wide feet", "volume": 5400 },
{ "keyword": "trail running shoes for beginners", "volume": 2900 }
]
}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"}'Call the Keyword Ideas API with a seed and a country to get a batch of queries with volume, then generate a page per idea.
Yes. Pull the current results for each query with the SERP Competitors API so your templates match the intent Google already rewards.
Submit your URL and keyword pairs in one job with the Bulk Scans API instead of checking each page by hand.
Yes. Alongside Google rankings, Trackee checks whether ChatGPT, Claude, Gemini, and Perplexity cite your pages through the AI visibility API.