Skip to content

Get Models

Get performance breakdown by AI model. See which models mention your brand most and where you rank.

Requires authentication
60 req/min

Endpoint

GET/get-models

Returns visibility breakdown by AI model. Use this to understand which AI platforms are most likely to recommend your brand.

Query Parameters

brand_idstringrequired

Brand UUID from /get-brands

daysinteger

Analysis period (7-365)

Default: 30

include_trendsboolean

Include daily breakdown

Default: false

This endpoint is rate limited to 60 requests per minute per API key. See the Rate Limits page for handling 429 responses.

Response Fields

Model Object

modelstring

AI model display name (ChatGPT, Claude, etc.)

total_queriesinteger

Total prompts sent to this model

mentionsinteger

Times your brand appeared

visibility_ratenumber

Percentage of queries where you appeared (0-100)

average_positionnumber

Average rank when mentioned (1.0-10.0)

top_3_ratenumber

Percentage of mentions in positions 1-3

top_3_countinteger

Count of top-3 appearances

AI Models Tracked

Trakkr tracks responses from these AI models:

Model NameProviderModel ID
ChatGPTOpenAIgpt-4o
ClaudeAnthropicclaude-3-5-sonnet
GeminiGooglegemini-2.0-flash
PerplexityPerplexity AIllama-3.1-sonar
GrokxAIgrok-2

Use Cases

  • Identify which AI models recommend your brand most
  • Track model-specific performance over time
  • Optimize content for underperforming models
  • Report on AI visibility by platform

Code Example

Request
1curl -H 'Authorization: Bearer $TRAKKR_API_KEY' \
2 'https://api.trakkr.ai/get-models?brand_id=75ffdeb9-0924-4ff9-8ded-c2470d73d224&days=30'
200 OK
1{
2 "models": [
3 {
4 "model": "ChatGPT",
5 "total_queries": 150,
6 "mentions": 68,
7 "visibility_rate": 45.3,
8 "average_position": 2.1,
9 "top_3_rate": 82.4,
10 "top_3_count": 56
11 },
12 {
13 "model": "Claude",
14 "total_queries": 150,
15 "mentions": 72,
16 "visibility_rate": 48.0,
17 "average_position": 1.9,
18 "top_3_rate": 88.9,
19 "top_3_count": 64
20 },
21 {
22 "model": "Gemini",
23 "total_queries": 150,
24 "mentions": 52,
25 "visibility_rate": 34.7,
26 "average_position": 2.8,
27 "top_3_rate": 71.2,
28 "top_3_count": 37
29 }
30 ],
31 "summary": {
32 "total_results": 450,
33 "total_mentions": 192,
34 "overall_visibility_rate": 42.7,
35 "model_count": 3,
36 "period_days": 30
37 }
38}
Press ? for keyboard shortcuts