@apteva/integrations 0.3.9 → 0.3.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/apps/brevo.json +1 -15
- package/src/apps/chargebee.json +1 -4
- package/src/apps/convertkit.json +1 -4
- package/src/apps/gigs-marketplace.json +1 -4
- package/src/apps/github.json +5 -22
- package/src/apps/gohighlevel.json +1 -4
- package/src/apps/helpscout.json +1 -4
- package/src/apps/hubspot.json +1 -4
- package/src/apps/intercom.json +1 -4
- package/src/apps/jira.json +1 -14
- package/src/apps/late.json +1 -4
- package/src/apps/linear.json +1 -4
- package/src/apps/mailchimp.json +1 -25
- package/src/apps/notion.json +3 -6
- package/src/apps/omnikit-cms.json +1 -18
- package/src/apps/omnikit-messaging.json +1 -18
- package/src/apps/rankbird.json +1201 -0
- package/src/apps/sendgrid-email.json +1 -19
- package/src/apps/shopify.json +1 -16
- package/src/apps/slack.json +1 -4
- package/src/apps/socialcast.json +8 -11
- package/src/apps/stripe-payments.json +1 -13
- package/src/apps/stripe.json +1 -13
- package/src/apps/twilio.json +9 -12
- package/src/apps/typeform.json +1 -4
|
@@ -0,0 +1,1201 @@
|
|
|
1
|
+
{
|
|
2
|
+
"slug": "rankbird",
|
|
3
|
+
"name": "Rankbird",
|
|
4
|
+
"description": "Rankbird SEO platform — keyword tracking, SERP rankings, backlinks, competitors, AI visibility (GEO), site audits, and reports.",
|
|
5
|
+
"logo": "https://www.google.com/s2/favicons?domain=rankbird.co&sz=128",
|
|
6
|
+
"categories": [
|
|
7
|
+
"seo",
|
|
8
|
+
"marketing",
|
|
9
|
+
"analytics",
|
|
10
|
+
"keywords",
|
|
11
|
+
"rankings",
|
|
12
|
+
"backlinks",
|
|
13
|
+
"ai-visibility",
|
|
14
|
+
"geo"
|
|
15
|
+
],
|
|
16
|
+
"base_url": "",
|
|
17
|
+
"auth": {
|
|
18
|
+
"types": [
|
|
19
|
+
"bearer"
|
|
20
|
+
],
|
|
21
|
+
"headers": {
|
|
22
|
+
"Authorization": "Bearer {{token}}"
|
|
23
|
+
},
|
|
24
|
+
"credential_fields": [
|
|
25
|
+
{
|
|
26
|
+
"name": "token",
|
|
27
|
+
"label": "Api Key",
|
|
28
|
+
"description": "Rankbird API key (e.g. okt_prod_...)"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "baseUrl",
|
|
32
|
+
"label": "Base Url",
|
|
33
|
+
"description": "Rankbird API base URL (e.g. https://api.rankbird.co)"
|
|
34
|
+
}
|
|
35
|
+
]
|
|
36
|
+
},
|
|
37
|
+
"tools": [
|
|
38
|
+
{
|
|
39
|
+
"name": "list_sites",
|
|
40
|
+
"description": "List all SEO sites being tracked. Filter by project_id or status.",
|
|
41
|
+
"method": "GET",
|
|
42
|
+
"path": "/list-sites",
|
|
43
|
+
"input_schema": {
|
|
44
|
+
"type": "object",
|
|
45
|
+
"properties": {
|
|
46
|
+
"project_id": {
|
|
47
|
+
"type": "string",
|
|
48
|
+
"description": "Filter by project ID"
|
|
49
|
+
},
|
|
50
|
+
"status": {
|
|
51
|
+
"type": "string",
|
|
52
|
+
"description": "Filter by status (active, paused, archived)"
|
|
53
|
+
},
|
|
54
|
+
"limit": {
|
|
55
|
+
"type": "integer",
|
|
56
|
+
"description": "Max results to return (default 50)"
|
|
57
|
+
},
|
|
58
|
+
"offset": {
|
|
59
|
+
"type": "integer",
|
|
60
|
+
"description": "Pagination offset"
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"name": "get_site",
|
|
67
|
+
"description": "Get details for a specific SEO site by ID.",
|
|
68
|
+
"method": "GET",
|
|
69
|
+
"path": "/get-site",
|
|
70
|
+
"input_schema": {
|
|
71
|
+
"type": "object",
|
|
72
|
+
"properties": {
|
|
73
|
+
"id": {
|
|
74
|
+
"type": "string",
|
|
75
|
+
"description": "Site ID"
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
"required": [
|
|
79
|
+
"id"
|
|
80
|
+
]
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"name": "create_site",
|
|
85
|
+
"description": "Create a new SEO site to track.",
|
|
86
|
+
"method": "POST",
|
|
87
|
+
"path": "/create-site",
|
|
88
|
+
"input_schema": {
|
|
89
|
+
"type": "object",
|
|
90
|
+
"properties": {
|
|
91
|
+
"name": {
|
|
92
|
+
"type": "string",
|
|
93
|
+
"description": "Site name"
|
|
94
|
+
},
|
|
95
|
+
"url": {
|
|
96
|
+
"type": "string",
|
|
97
|
+
"description": "Site URL (e.g. https://example.com)"
|
|
98
|
+
},
|
|
99
|
+
"project_id": {
|
|
100
|
+
"type": "string",
|
|
101
|
+
"description": "Project ID"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"required": [
|
|
105
|
+
"name",
|
|
106
|
+
"url",
|
|
107
|
+
"project_id"
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
"name": "update_site",
|
|
113
|
+
"description": "Update an existing SEO site.",
|
|
114
|
+
"method": "PUT",
|
|
115
|
+
"path": "/update-site",
|
|
116
|
+
"input_schema": {
|
|
117
|
+
"type": "object",
|
|
118
|
+
"properties": {
|
|
119
|
+
"id": {
|
|
120
|
+
"type": "string",
|
|
121
|
+
"description": "Site ID"
|
|
122
|
+
},
|
|
123
|
+
"name": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"description": "Site name"
|
|
126
|
+
},
|
|
127
|
+
"status": {
|
|
128
|
+
"type": "string",
|
|
129
|
+
"description": "Status (active, paused, archived)"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"required": [
|
|
133
|
+
"id"
|
|
134
|
+
]
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "delete_site",
|
|
139
|
+
"description": "Delete an SEO site.",
|
|
140
|
+
"method": "DELETE",
|
|
141
|
+
"path": "/delete-site",
|
|
142
|
+
"input_schema": {
|
|
143
|
+
"type": "object",
|
|
144
|
+
"properties": {
|
|
145
|
+
"id": {
|
|
146
|
+
"type": "string",
|
|
147
|
+
"description": "Site ID"
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"required": [
|
|
151
|
+
"id"
|
|
152
|
+
]
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"name": "list_keywords",
|
|
157
|
+
"description": "List keywords tracked for a site. Filter by status, search engine, or device.",
|
|
158
|
+
"method": "GET",
|
|
159
|
+
"path": "/list-keywords",
|
|
160
|
+
"input_schema": {
|
|
161
|
+
"type": "object",
|
|
162
|
+
"properties": {
|
|
163
|
+
"site_id": {
|
|
164
|
+
"type": "string",
|
|
165
|
+
"description": "Site ID"
|
|
166
|
+
},
|
|
167
|
+
"status": {
|
|
168
|
+
"type": "string",
|
|
169
|
+
"description": "Filter by status (active, paused)"
|
|
170
|
+
},
|
|
171
|
+
"limit": {
|
|
172
|
+
"type": "integer",
|
|
173
|
+
"description": "Max results (default 50)"
|
|
174
|
+
},
|
|
175
|
+
"offset": {
|
|
176
|
+
"type": "integer",
|
|
177
|
+
"description": "Pagination offset"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
"required": [
|
|
181
|
+
"site_id"
|
|
182
|
+
]
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"name": "get_keyword",
|
|
187
|
+
"description": "Get details for a specific keyword including search volume, difficulty, and CPC.",
|
|
188
|
+
"method": "GET",
|
|
189
|
+
"path": "/get-keyword",
|
|
190
|
+
"input_schema": {
|
|
191
|
+
"type": "object",
|
|
192
|
+
"properties": {
|
|
193
|
+
"id": {
|
|
194
|
+
"type": "string",
|
|
195
|
+
"description": "Keyword ID"
|
|
196
|
+
}
|
|
197
|
+
},
|
|
198
|
+
"required": [
|
|
199
|
+
"id"
|
|
200
|
+
]
|
|
201
|
+
}
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"name": "add_keyword",
|
|
205
|
+
"description": "Add a keyword to track for a site.",
|
|
206
|
+
"method": "POST",
|
|
207
|
+
"path": "/add-keyword",
|
|
208
|
+
"input_schema": {
|
|
209
|
+
"type": "object",
|
|
210
|
+
"properties": {
|
|
211
|
+
"site_id": {
|
|
212
|
+
"type": "string",
|
|
213
|
+
"description": "Site ID"
|
|
214
|
+
},
|
|
215
|
+
"keyword": {
|
|
216
|
+
"type": "string",
|
|
217
|
+
"description": "Keyword to track"
|
|
218
|
+
},
|
|
219
|
+
"search_engine": {
|
|
220
|
+
"type": "string",
|
|
221
|
+
"description": "Search engine (default: google)"
|
|
222
|
+
},
|
|
223
|
+
"location": {
|
|
224
|
+
"type": "string",
|
|
225
|
+
"description": "Location (e.g. United States)"
|
|
226
|
+
},
|
|
227
|
+
"language": {
|
|
228
|
+
"type": "string",
|
|
229
|
+
"description": "Language (e.g. English)"
|
|
230
|
+
},
|
|
231
|
+
"device": {
|
|
232
|
+
"type": "string",
|
|
233
|
+
"description": "Device type (desktop, mobile)"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"required": [
|
|
237
|
+
"site_id",
|
|
238
|
+
"keyword"
|
|
239
|
+
]
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"name": "update_keyword",
|
|
244
|
+
"description": "Update a tracked keyword.",
|
|
245
|
+
"method": "PUT",
|
|
246
|
+
"path": "/update-keyword",
|
|
247
|
+
"input_schema": {
|
|
248
|
+
"type": "object",
|
|
249
|
+
"properties": {
|
|
250
|
+
"id": {
|
|
251
|
+
"type": "string",
|
|
252
|
+
"description": "Keyword ID"
|
|
253
|
+
},
|
|
254
|
+
"status": {
|
|
255
|
+
"type": "string",
|
|
256
|
+
"description": "Status (active, paused)"
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"required": [
|
|
260
|
+
"id"
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"name": "delete_keyword",
|
|
266
|
+
"description": "Delete a tracked keyword.",
|
|
267
|
+
"method": "DELETE",
|
|
268
|
+
"path": "/delete-keyword",
|
|
269
|
+
"input_schema": {
|
|
270
|
+
"type": "object",
|
|
271
|
+
"properties": {
|
|
272
|
+
"id": {
|
|
273
|
+
"type": "string",
|
|
274
|
+
"description": "Keyword ID"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
"required": [
|
|
278
|
+
"id"
|
|
279
|
+
]
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"name": "keyword_rankings",
|
|
284
|
+
"description": "Get SERP ranking history for a keyword over time.",
|
|
285
|
+
"method": "GET",
|
|
286
|
+
"path": "/keyword-rankings",
|
|
287
|
+
"input_schema": {
|
|
288
|
+
"type": "object",
|
|
289
|
+
"properties": {
|
|
290
|
+
"keyword_id": {
|
|
291
|
+
"type": "string",
|
|
292
|
+
"description": "Keyword ID"
|
|
293
|
+
},
|
|
294
|
+
"limit": {
|
|
295
|
+
"type": "integer",
|
|
296
|
+
"description": "Max results"
|
|
297
|
+
},
|
|
298
|
+
"offset": {
|
|
299
|
+
"type": "integer",
|
|
300
|
+
"description": "Pagination offset"
|
|
301
|
+
}
|
|
302
|
+
},
|
|
303
|
+
"required": [
|
|
304
|
+
"keyword_id"
|
|
305
|
+
]
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"name": "keyword_domain_rankings",
|
|
310
|
+
"description": "Get which domains rank for a specific keyword.",
|
|
311
|
+
"method": "GET",
|
|
312
|
+
"path": "/keyword-domain-rankings",
|
|
313
|
+
"input_schema": {
|
|
314
|
+
"type": "object",
|
|
315
|
+
"properties": {
|
|
316
|
+
"keyword_id": {
|
|
317
|
+
"type": "string",
|
|
318
|
+
"description": "Keyword ID"
|
|
319
|
+
},
|
|
320
|
+
"limit": {
|
|
321
|
+
"type": "integer",
|
|
322
|
+
"description": "Max results"
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
"required": [
|
|
326
|
+
"keyword_id"
|
|
327
|
+
]
|
|
328
|
+
}
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"name": "keyword_competitor_positions",
|
|
332
|
+
"description": "Get competitor ranking positions for a keyword on a site.",
|
|
333
|
+
"method": "GET",
|
|
334
|
+
"path": "/keyword-competitor-positions",
|
|
335
|
+
"input_schema": {
|
|
336
|
+
"type": "object",
|
|
337
|
+
"properties": {
|
|
338
|
+
"site_id": {
|
|
339
|
+
"type": "string",
|
|
340
|
+
"description": "Site ID"
|
|
341
|
+
},
|
|
342
|
+
"keyword_id": {
|
|
343
|
+
"type": "string",
|
|
344
|
+
"description": "Keyword ID"
|
|
345
|
+
}
|
|
346
|
+
},
|
|
347
|
+
"required": [
|
|
348
|
+
"site_id",
|
|
349
|
+
"keyword_id"
|
|
350
|
+
]
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "explore_keywords",
|
|
355
|
+
"description": "Explore and discover keyword ideas with search volume, difficulty, and CPC data.",
|
|
356
|
+
"method": "GET",
|
|
357
|
+
"path": "/explore-keywords",
|
|
358
|
+
"input_schema": {
|
|
359
|
+
"type": "object",
|
|
360
|
+
"properties": {
|
|
361
|
+
"keyword": {
|
|
362
|
+
"type": "string",
|
|
363
|
+
"description": "Seed keyword to explore"
|
|
364
|
+
},
|
|
365
|
+
"location": {
|
|
366
|
+
"type": "string",
|
|
367
|
+
"description": "Location (e.g. United States)"
|
|
368
|
+
},
|
|
369
|
+
"language": {
|
|
370
|
+
"type": "string",
|
|
371
|
+
"description": "Language (e.g. English)"
|
|
372
|
+
},
|
|
373
|
+
"limit": {
|
|
374
|
+
"type": "integer",
|
|
375
|
+
"description": "Max results"
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"required": [
|
|
379
|
+
"keyword"
|
|
380
|
+
]
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "content_gap",
|
|
385
|
+
"description": "Find keywords your competitors rank for but you don't.",
|
|
386
|
+
"method": "GET",
|
|
387
|
+
"path": "/content-gap",
|
|
388
|
+
"input_schema": {
|
|
389
|
+
"type": "object",
|
|
390
|
+
"properties": {
|
|
391
|
+
"site_id": {
|
|
392
|
+
"type": "string",
|
|
393
|
+
"description": "Site ID"
|
|
394
|
+
},
|
|
395
|
+
"limit": {
|
|
396
|
+
"type": "integer",
|
|
397
|
+
"description": "Max results"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"required": [
|
|
401
|
+
"site_id"
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"name": "list_domains",
|
|
407
|
+
"description": "List all discovered domains in the system.",
|
|
408
|
+
"method": "GET",
|
|
409
|
+
"path": "/list-domains",
|
|
410
|
+
"input_schema": {
|
|
411
|
+
"type": "object",
|
|
412
|
+
"properties": {
|
|
413
|
+
"limit": {
|
|
414
|
+
"type": "integer",
|
|
415
|
+
"description": "Max results"
|
|
416
|
+
},
|
|
417
|
+
"offset": {
|
|
418
|
+
"type": "integer",
|
|
419
|
+
"description": "Pagination offset"
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "get_domain",
|
|
426
|
+
"description": "Get domain details including authority score, backlinks count, and metrics.",
|
|
427
|
+
"method": "GET",
|
|
428
|
+
"path": "/get-domain",
|
|
429
|
+
"input_schema": {
|
|
430
|
+
"type": "object",
|
|
431
|
+
"properties": {
|
|
432
|
+
"id": {
|
|
433
|
+
"type": "string",
|
|
434
|
+
"description": "Domain ID"
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
"required": [
|
|
438
|
+
"id"
|
|
439
|
+
]
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
"name": "domain_rankings",
|
|
444
|
+
"description": "Get all keyword rankings for a domain.",
|
|
445
|
+
"method": "GET",
|
|
446
|
+
"path": "/domain-rankings",
|
|
447
|
+
"input_schema": {
|
|
448
|
+
"type": "object",
|
|
449
|
+
"properties": {
|
|
450
|
+
"domain_id": {
|
|
451
|
+
"type": "string",
|
|
452
|
+
"description": "Domain ID"
|
|
453
|
+
},
|
|
454
|
+
"limit": {
|
|
455
|
+
"type": "integer",
|
|
456
|
+
"description": "Max results"
|
|
457
|
+
},
|
|
458
|
+
"offset": {
|
|
459
|
+
"type": "integer",
|
|
460
|
+
"description": "Pagination offset"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
"required": [
|
|
464
|
+
"domain_id"
|
|
465
|
+
]
|
|
466
|
+
}
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
"name": "domain_history",
|
|
470
|
+
"description": "Get historical metrics for a domain (authority, backlinks, etc. over time).",
|
|
471
|
+
"method": "GET",
|
|
472
|
+
"path": "/domain-history",
|
|
473
|
+
"input_schema": {
|
|
474
|
+
"type": "object",
|
|
475
|
+
"properties": {
|
|
476
|
+
"domain_id": {
|
|
477
|
+
"type": "string",
|
|
478
|
+
"description": "Domain ID"
|
|
479
|
+
},
|
|
480
|
+
"limit": {
|
|
481
|
+
"type": "integer",
|
|
482
|
+
"description": "Max results"
|
|
483
|
+
}
|
|
484
|
+
},
|
|
485
|
+
"required": [
|
|
486
|
+
"domain_id"
|
|
487
|
+
]
|
|
488
|
+
}
|
|
489
|
+
},
|
|
490
|
+
{
|
|
491
|
+
"name": "lookup_domain",
|
|
492
|
+
"description": "Look up a domain by name to find its ID and metrics.",
|
|
493
|
+
"method": "POST",
|
|
494
|
+
"path": "/lookup-domain",
|
|
495
|
+
"input_schema": {
|
|
496
|
+
"type": "object",
|
|
497
|
+
"properties": {
|
|
498
|
+
"domain": {
|
|
499
|
+
"type": "string",
|
|
500
|
+
"description": "Domain name (e.g. example.com)"
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"required": [
|
|
504
|
+
"domain"
|
|
505
|
+
]
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
"name": "list_competitors",
|
|
510
|
+
"description": "List competitors tracked for a site.",
|
|
511
|
+
"method": "GET",
|
|
512
|
+
"path": "/list-competitors",
|
|
513
|
+
"input_schema": {
|
|
514
|
+
"type": "object",
|
|
515
|
+
"properties": {
|
|
516
|
+
"site_id": {
|
|
517
|
+
"type": "string",
|
|
518
|
+
"description": "Site ID"
|
|
519
|
+
},
|
|
520
|
+
"limit": {
|
|
521
|
+
"type": "integer",
|
|
522
|
+
"description": "Max results"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
525
|
+
"required": [
|
|
526
|
+
"site_id"
|
|
527
|
+
]
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"name": "add_competitor",
|
|
532
|
+
"description": "Add a competitor domain to track for a site.",
|
|
533
|
+
"method": "POST",
|
|
534
|
+
"path": "/add-competitor",
|
|
535
|
+
"input_schema": {
|
|
536
|
+
"type": "object",
|
|
537
|
+
"properties": {
|
|
538
|
+
"site_id": {
|
|
539
|
+
"type": "string",
|
|
540
|
+
"description": "Site ID"
|
|
541
|
+
},
|
|
542
|
+
"domain": {
|
|
543
|
+
"type": "string",
|
|
544
|
+
"description": "Competitor domain (e.g. competitor.com)"
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
"required": [
|
|
548
|
+
"site_id",
|
|
549
|
+
"domain"
|
|
550
|
+
]
|
|
551
|
+
}
|
|
552
|
+
},
|
|
553
|
+
{
|
|
554
|
+
"name": "delete_competitor",
|
|
555
|
+
"description": "Remove a tracked competitor.",
|
|
556
|
+
"method": "DELETE",
|
|
557
|
+
"path": "/delete-competitor",
|
|
558
|
+
"input_schema": {
|
|
559
|
+
"type": "object",
|
|
560
|
+
"properties": {
|
|
561
|
+
"id": {
|
|
562
|
+
"type": "string",
|
|
563
|
+
"description": "Competitor ID"
|
|
564
|
+
}
|
|
565
|
+
},
|
|
566
|
+
"required": [
|
|
567
|
+
"id"
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
},
|
|
571
|
+
{
|
|
572
|
+
"name": "list_backlinks",
|
|
573
|
+
"description": "List backlinks tracked for a site.",
|
|
574
|
+
"method": "GET",
|
|
575
|
+
"path": "/list-backlinks",
|
|
576
|
+
"input_schema": {
|
|
577
|
+
"type": "object",
|
|
578
|
+
"properties": {
|
|
579
|
+
"site_id": {
|
|
580
|
+
"type": "string",
|
|
581
|
+
"description": "Site ID"
|
|
582
|
+
},
|
|
583
|
+
"limit": {
|
|
584
|
+
"type": "integer",
|
|
585
|
+
"description": "Max results"
|
|
586
|
+
},
|
|
587
|
+
"offset": {
|
|
588
|
+
"type": "integer",
|
|
589
|
+
"description": "Pagination offset"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"required": [
|
|
593
|
+
"site_id"
|
|
594
|
+
]
|
|
595
|
+
}
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "backlink_stats",
|
|
599
|
+
"description": "Get backlink statistics for a site (total, dofollow, nofollow, referring domains).",
|
|
600
|
+
"method": "GET",
|
|
601
|
+
"path": "/backlink-stats",
|
|
602
|
+
"input_schema": {
|
|
603
|
+
"type": "object",
|
|
604
|
+
"properties": {
|
|
605
|
+
"site_id": {
|
|
606
|
+
"type": "string",
|
|
607
|
+
"description": "Site ID"
|
|
608
|
+
}
|
|
609
|
+
},
|
|
610
|
+
"required": [
|
|
611
|
+
"site_id"
|
|
612
|
+
]
|
|
613
|
+
}
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"name": "add_backlink",
|
|
617
|
+
"description": "Add a backlink to track for a site.",
|
|
618
|
+
"method": "POST",
|
|
619
|
+
"path": "/add-backlink",
|
|
620
|
+
"input_schema": {
|
|
621
|
+
"type": "object",
|
|
622
|
+
"properties": {
|
|
623
|
+
"site_id": {
|
|
624
|
+
"type": "string",
|
|
625
|
+
"description": "Site ID"
|
|
626
|
+
},
|
|
627
|
+
"source_url": {
|
|
628
|
+
"type": "string",
|
|
629
|
+
"description": "URL of the page linking to you"
|
|
630
|
+
},
|
|
631
|
+
"target_url": {
|
|
632
|
+
"type": "string",
|
|
633
|
+
"description": "URL on your site being linked to"
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
"required": [
|
|
637
|
+
"site_id",
|
|
638
|
+
"source_url",
|
|
639
|
+
"target_url"
|
|
640
|
+
]
|
|
641
|
+
}
|
|
642
|
+
},
|
|
643
|
+
{
|
|
644
|
+
"name": "list_pages",
|
|
645
|
+
"description": "List tracked pages for a site.",
|
|
646
|
+
"method": "GET",
|
|
647
|
+
"path": "/list-pages",
|
|
648
|
+
"input_schema": {
|
|
649
|
+
"type": "object",
|
|
650
|
+
"properties": {
|
|
651
|
+
"site_id": {
|
|
652
|
+
"type": "string",
|
|
653
|
+
"description": "Site ID"
|
|
654
|
+
},
|
|
655
|
+
"limit": {
|
|
656
|
+
"type": "integer",
|
|
657
|
+
"description": "Max results"
|
|
658
|
+
},
|
|
659
|
+
"offset": {
|
|
660
|
+
"type": "integer",
|
|
661
|
+
"description": "Pagination offset"
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
"required": [
|
|
665
|
+
"site_id"
|
|
666
|
+
]
|
|
667
|
+
}
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"name": "get_page",
|
|
671
|
+
"description": "Get details for a specific tracked page.",
|
|
672
|
+
"method": "GET",
|
|
673
|
+
"path": "/get-page",
|
|
674
|
+
"input_schema": {
|
|
675
|
+
"type": "object",
|
|
676
|
+
"properties": {
|
|
677
|
+
"id": {
|
|
678
|
+
"type": "string",
|
|
679
|
+
"description": "Page ID"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
"required": [
|
|
683
|
+
"id"
|
|
684
|
+
]
|
|
685
|
+
}
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"name": "page_keywords",
|
|
689
|
+
"description": "Get keywords that a specific page ranks for.",
|
|
690
|
+
"method": "GET",
|
|
691
|
+
"path": "/page-keywords",
|
|
692
|
+
"input_schema": {
|
|
693
|
+
"type": "object",
|
|
694
|
+
"properties": {
|
|
695
|
+
"page_id": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"description": "Page ID"
|
|
698
|
+
},
|
|
699
|
+
"limit": {
|
|
700
|
+
"type": "integer",
|
|
701
|
+
"description": "Max results"
|
|
702
|
+
}
|
|
703
|
+
},
|
|
704
|
+
"required": [
|
|
705
|
+
"page_id"
|
|
706
|
+
]
|
|
707
|
+
}
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "site_domain_rankings",
|
|
711
|
+
"description": "Get domain ranking summary for a site — which domains appear in SERPs for your keywords.",
|
|
712
|
+
"method": "GET",
|
|
713
|
+
"path": "/site-domain-rankings",
|
|
714
|
+
"input_schema": {
|
|
715
|
+
"type": "object",
|
|
716
|
+
"properties": {
|
|
717
|
+
"site_id": {
|
|
718
|
+
"type": "string",
|
|
719
|
+
"description": "Site ID"
|
|
720
|
+
},
|
|
721
|
+
"limit": {
|
|
722
|
+
"type": "integer",
|
|
723
|
+
"description": "Max results"
|
|
724
|
+
}
|
|
725
|
+
},
|
|
726
|
+
"required": [
|
|
727
|
+
"site_id"
|
|
728
|
+
]
|
|
729
|
+
}
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"name": "site_page_rankings",
|
|
733
|
+
"description": "Get page-level ranking summary for a site — which of your pages rank and for how many keywords.",
|
|
734
|
+
"method": "GET",
|
|
735
|
+
"path": "/site-page-rankings",
|
|
736
|
+
"input_schema": {
|
|
737
|
+
"type": "object",
|
|
738
|
+
"properties": {
|
|
739
|
+
"site_id": {
|
|
740
|
+
"type": "string",
|
|
741
|
+
"description": "Site ID"
|
|
742
|
+
},
|
|
743
|
+
"limit": {
|
|
744
|
+
"type": "integer",
|
|
745
|
+
"description": "Max results"
|
|
746
|
+
}
|
|
747
|
+
},
|
|
748
|
+
"required": [
|
|
749
|
+
"site_id"
|
|
750
|
+
]
|
|
751
|
+
}
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
"name": "url_rankings",
|
|
755
|
+
"description": "Get ranking data for a specific URL across all keywords.",
|
|
756
|
+
"method": "GET",
|
|
757
|
+
"path": "/url-rankings",
|
|
758
|
+
"input_schema": {
|
|
759
|
+
"type": "object",
|
|
760
|
+
"properties": {
|
|
761
|
+
"url": {
|
|
762
|
+
"type": "string",
|
|
763
|
+
"description": "URL to check rankings for"
|
|
764
|
+
},
|
|
765
|
+
"limit": {
|
|
766
|
+
"type": "integer",
|
|
767
|
+
"description": "Max results"
|
|
768
|
+
}
|
|
769
|
+
},
|
|
770
|
+
"required": [
|
|
771
|
+
"url"
|
|
772
|
+
]
|
|
773
|
+
}
|
|
774
|
+
},
|
|
775
|
+
{
|
|
776
|
+
"name": "create_audit",
|
|
777
|
+
"description": "Trigger a new SEO audit for a site.",
|
|
778
|
+
"method": "POST",
|
|
779
|
+
"path": "/create-audit",
|
|
780
|
+
"input_schema": {
|
|
781
|
+
"type": "object",
|
|
782
|
+
"properties": {
|
|
783
|
+
"site_id": {
|
|
784
|
+
"type": "string",
|
|
785
|
+
"description": "Site ID"
|
|
786
|
+
}
|
|
787
|
+
},
|
|
788
|
+
"required": [
|
|
789
|
+
"site_id"
|
|
790
|
+
]
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
"name": "get_audit",
|
|
795
|
+
"description": "Get results of a specific SEO audit.",
|
|
796
|
+
"method": "GET",
|
|
797
|
+
"path": "/get-audit",
|
|
798
|
+
"input_schema": {
|
|
799
|
+
"type": "object",
|
|
800
|
+
"properties": {
|
|
801
|
+
"id": {
|
|
802
|
+
"type": "string",
|
|
803
|
+
"description": "Audit ID"
|
|
804
|
+
}
|
|
805
|
+
},
|
|
806
|
+
"required": [
|
|
807
|
+
"id"
|
|
808
|
+
]
|
|
809
|
+
}
|
|
810
|
+
},
|
|
811
|
+
{
|
|
812
|
+
"name": "list_audits",
|
|
813
|
+
"description": "List SEO audits for a site.",
|
|
814
|
+
"method": "GET",
|
|
815
|
+
"path": "/list-audits",
|
|
816
|
+
"input_schema": {
|
|
817
|
+
"type": "object",
|
|
818
|
+
"properties": {
|
|
819
|
+
"site_id": {
|
|
820
|
+
"type": "string",
|
|
821
|
+
"description": "Site ID"
|
|
822
|
+
},
|
|
823
|
+
"limit": {
|
|
824
|
+
"type": "integer",
|
|
825
|
+
"description": "Max results"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"required": [
|
|
829
|
+
"site_id"
|
|
830
|
+
]
|
|
831
|
+
}
|
|
832
|
+
},
|
|
833
|
+
{
|
|
834
|
+
"name": "create_report",
|
|
835
|
+
"description": "Generate an SEO report for a site.",
|
|
836
|
+
"method": "POST",
|
|
837
|
+
"path": "/create-report",
|
|
838
|
+
"input_schema": {
|
|
839
|
+
"type": "object",
|
|
840
|
+
"properties": {
|
|
841
|
+
"site_id": {
|
|
842
|
+
"type": "string",
|
|
843
|
+
"description": "Site ID"
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
"required": [
|
|
847
|
+
"site_id"
|
|
848
|
+
]
|
|
849
|
+
}
|
|
850
|
+
},
|
|
851
|
+
{
|
|
852
|
+
"name": "get_report",
|
|
853
|
+
"description": "Get a generated SEO report.",
|
|
854
|
+
"method": "GET",
|
|
855
|
+
"path": "/get-report",
|
|
856
|
+
"input_schema": {
|
|
857
|
+
"type": "object",
|
|
858
|
+
"properties": {
|
|
859
|
+
"id": {
|
|
860
|
+
"type": "string",
|
|
861
|
+
"description": "Report ID"
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
"required": [
|
|
865
|
+
"id"
|
|
866
|
+
]
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "list_reports",
|
|
871
|
+
"description": "List SEO reports for a site.",
|
|
872
|
+
"method": "GET",
|
|
873
|
+
"path": "/list-reports",
|
|
874
|
+
"input_schema": {
|
|
875
|
+
"type": "object",
|
|
876
|
+
"properties": {
|
|
877
|
+
"site_id": {
|
|
878
|
+
"type": "string",
|
|
879
|
+
"description": "Site ID"
|
|
880
|
+
},
|
|
881
|
+
"limit": {
|
|
882
|
+
"type": "integer",
|
|
883
|
+
"description": "Max results"
|
|
884
|
+
}
|
|
885
|
+
},
|
|
886
|
+
"required": [
|
|
887
|
+
"site_id"
|
|
888
|
+
]
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
"name": "ai_platforms",
|
|
893
|
+
"description": "List all AI platforms tracked for GEO visibility (ChatGPT, Google AIO, Perplexity, etc.).",
|
|
894
|
+
"method": "GET",
|
|
895
|
+
"path": "/ai-platforms",
|
|
896
|
+
"input_schema": {
|
|
897
|
+
"type": "object",
|
|
898
|
+
"properties": {}
|
|
899
|
+
}
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
"name": "ai_visibility",
|
|
903
|
+
"description": "Get AI visibility metrics for a site — mention rate, citation rate, avg position, sentiment breakdown, and per-platform stats.",
|
|
904
|
+
"method": "GET",
|
|
905
|
+
"path": "/ai-visibility",
|
|
906
|
+
"input_schema": {
|
|
907
|
+
"type": "object",
|
|
908
|
+
"properties": {
|
|
909
|
+
"site_id": {
|
|
910
|
+
"type": "string",
|
|
911
|
+
"description": "Site ID"
|
|
912
|
+
},
|
|
913
|
+
"platform_id": {
|
|
914
|
+
"type": "string",
|
|
915
|
+
"description": "Filter to a specific AI platform"
|
|
916
|
+
},
|
|
917
|
+
"since": {
|
|
918
|
+
"type": "string",
|
|
919
|
+
"description": "Start date (ISO 8601)"
|
|
920
|
+
},
|
|
921
|
+
"until": {
|
|
922
|
+
"type": "string",
|
|
923
|
+
"description": "End date (ISO 8601)"
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
"required": [
|
|
927
|
+
"site_id"
|
|
928
|
+
]
|
|
929
|
+
}
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"name": "ai_sov",
|
|
933
|
+
"description": "Get AI share of voice — which brands/domains get mentioned most across AI responses for your prompts.",
|
|
934
|
+
"method": "GET",
|
|
935
|
+
"path": "/ai-sov",
|
|
936
|
+
"input_schema": {
|
|
937
|
+
"type": "object",
|
|
938
|
+
"properties": {
|
|
939
|
+
"site_id": {
|
|
940
|
+
"type": "string",
|
|
941
|
+
"description": "Site ID"
|
|
942
|
+
},
|
|
943
|
+
"platform_id": {
|
|
944
|
+
"type": "string",
|
|
945
|
+
"description": "Filter to a specific AI platform"
|
|
946
|
+
},
|
|
947
|
+
"since": {
|
|
948
|
+
"type": "string",
|
|
949
|
+
"description": "Start date (ISO 8601)"
|
|
950
|
+
},
|
|
951
|
+
"until": {
|
|
952
|
+
"type": "string",
|
|
953
|
+
"description": "End date (ISO 8601)"
|
|
954
|
+
}
|
|
955
|
+
},
|
|
956
|
+
"required": [
|
|
957
|
+
"site_id"
|
|
958
|
+
]
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
{
|
|
962
|
+
"name": "ai_cited_pages",
|
|
963
|
+
"description": "Get which of your pages are cited most by AI engines, with citation counts and platform breakdown.",
|
|
964
|
+
"method": "GET",
|
|
965
|
+
"path": "/ai-cited-pages",
|
|
966
|
+
"input_schema": {
|
|
967
|
+
"type": "object",
|
|
968
|
+
"properties": {
|
|
969
|
+
"site_id": {
|
|
970
|
+
"type": "string",
|
|
971
|
+
"description": "Site ID"
|
|
972
|
+
},
|
|
973
|
+
"platform_id": {
|
|
974
|
+
"type": "string",
|
|
975
|
+
"description": "Filter to a specific AI platform"
|
|
976
|
+
},
|
|
977
|
+
"since": {
|
|
978
|
+
"type": "string",
|
|
979
|
+
"description": "Start date (ISO 8601)"
|
|
980
|
+
},
|
|
981
|
+
"until": {
|
|
982
|
+
"type": "string",
|
|
983
|
+
"description": "End date (ISO 8601)"
|
|
984
|
+
},
|
|
985
|
+
"limit": {
|
|
986
|
+
"type": "integer",
|
|
987
|
+
"description": "Max results (default 20)"
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"required": [
|
|
991
|
+
"site_id"
|
|
992
|
+
]
|
|
993
|
+
}
|
|
994
|
+
},
|
|
995
|
+
{
|
|
996
|
+
"name": "ai_list_prompts",
|
|
997
|
+
"description": "List AI prompts tracked for a site. These are real questions people ask AI engines that mention your brand.",
|
|
998
|
+
"method": "GET",
|
|
999
|
+
"path": "/ai-list-prompts",
|
|
1000
|
+
"input_schema": {
|
|
1001
|
+
"type": "object",
|
|
1002
|
+
"properties": {
|
|
1003
|
+
"site_id": {
|
|
1004
|
+
"type": "string",
|
|
1005
|
+
"description": "Site ID"
|
|
1006
|
+
},
|
|
1007
|
+
"status": {
|
|
1008
|
+
"type": "string",
|
|
1009
|
+
"description": "Filter by status (active, paused)"
|
|
1010
|
+
},
|
|
1011
|
+
"topic": {
|
|
1012
|
+
"type": "string",
|
|
1013
|
+
"description": "Filter by topic"
|
|
1014
|
+
},
|
|
1015
|
+
"funnel_stage": {
|
|
1016
|
+
"type": "string",
|
|
1017
|
+
"description": "Filter by funnel stage (awareness, consideration, decision)"
|
|
1018
|
+
},
|
|
1019
|
+
"limit": {
|
|
1020
|
+
"type": "integer",
|
|
1021
|
+
"description": "Max results (default 50)"
|
|
1022
|
+
},
|
|
1023
|
+
"offset": {
|
|
1024
|
+
"type": "integer",
|
|
1025
|
+
"description": "Pagination offset"
|
|
1026
|
+
}
|
|
1027
|
+
},
|
|
1028
|
+
"required": [
|
|
1029
|
+
"site_id"
|
|
1030
|
+
]
|
|
1031
|
+
}
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"name": "ai_get_prompt",
|
|
1035
|
+
"description": "Get details for a specific AI prompt including its latest check results.",
|
|
1036
|
+
"method": "GET",
|
|
1037
|
+
"path": "/ai-get-prompt",
|
|
1038
|
+
"input_schema": {
|
|
1039
|
+
"type": "object",
|
|
1040
|
+
"properties": {
|
|
1041
|
+
"id": {
|
|
1042
|
+
"type": "string",
|
|
1043
|
+
"description": "Prompt ID"
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
"required": [
|
|
1047
|
+
"id"
|
|
1048
|
+
]
|
|
1049
|
+
}
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"name": "ai_create_prompt",
|
|
1053
|
+
"description": "Add a new AI prompt to track for a site.",
|
|
1054
|
+
"method": "POST",
|
|
1055
|
+
"path": "/ai-create-prompt",
|
|
1056
|
+
"input_schema": {
|
|
1057
|
+
"type": "object",
|
|
1058
|
+
"properties": {
|
|
1059
|
+
"project_id": {
|
|
1060
|
+
"type": "string",
|
|
1061
|
+
"description": "Project ID"
|
|
1062
|
+
},
|
|
1063
|
+
"site_id": {
|
|
1064
|
+
"type": "string",
|
|
1065
|
+
"description": "Site ID"
|
|
1066
|
+
},
|
|
1067
|
+
"prompt_text": {
|
|
1068
|
+
"type": "string",
|
|
1069
|
+
"description": "The AI prompt/question to track"
|
|
1070
|
+
},
|
|
1071
|
+
"topic": {
|
|
1072
|
+
"type": "string",
|
|
1073
|
+
"description": "Topic category"
|
|
1074
|
+
},
|
|
1075
|
+
"funnel_stage": {
|
|
1076
|
+
"type": "string",
|
|
1077
|
+
"description": "Funnel stage (awareness, consideration, decision)"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"required": [
|
|
1081
|
+
"project_id",
|
|
1082
|
+
"site_id",
|
|
1083
|
+
"prompt_text"
|
|
1084
|
+
]
|
|
1085
|
+
}
|
|
1086
|
+
},
|
|
1087
|
+
{
|
|
1088
|
+
"name": "ai_update_prompt",
|
|
1089
|
+
"description": "Update an existing AI prompt.",
|
|
1090
|
+
"method": "PUT",
|
|
1091
|
+
"path": "/ai-update-prompt",
|
|
1092
|
+
"input_schema": {
|
|
1093
|
+
"type": "object",
|
|
1094
|
+
"properties": {
|
|
1095
|
+
"id": {
|
|
1096
|
+
"type": "string",
|
|
1097
|
+
"description": "Prompt ID"
|
|
1098
|
+
},
|
|
1099
|
+
"topic": {
|
|
1100
|
+
"type": "string",
|
|
1101
|
+
"description": "Topic category"
|
|
1102
|
+
},
|
|
1103
|
+
"funnel_stage": {
|
|
1104
|
+
"type": "string",
|
|
1105
|
+
"description": "Funnel stage"
|
|
1106
|
+
},
|
|
1107
|
+
"status": {
|
|
1108
|
+
"type": "string",
|
|
1109
|
+
"description": "Status (active, paused)"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"required": [
|
|
1113
|
+
"id"
|
|
1114
|
+
]
|
|
1115
|
+
}
|
|
1116
|
+
},
|
|
1117
|
+
{
|
|
1118
|
+
"name": "ai_delete_prompt",
|
|
1119
|
+
"description": "Delete an AI prompt and all its check history.",
|
|
1120
|
+
"method": "DELETE",
|
|
1121
|
+
"path": "/ai-delete-prompt",
|
|
1122
|
+
"input_schema": {
|
|
1123
|
+
"type": "object",
|
|
1124
|
+
"properties": {
|
|
1125
|
+
"id": {
|
|
1126
|
+
"type": "string",
|
|
1127
|
+
"description": "Prompt ID"
|
|
1128
|
+
}
|
|
1129
|
+
},
|
|
1130
|
+
"required": [
|
|
1131
|
+
"id"
|
|
1132
|
+
]
|
|
1133
|
+
}
|
|
1134
|
+
},
|
|
1135
|
+
{
|
|
1136
|
+
"name": "ai_list_checks",
|
|
1137
|
+
"description": "List AI check results — how your brand appeared in AI responses. Filter by prompt, platform, sentiment, or date range.",
|
|
1138
|
+
"method": "GET",
|
|
1139
|
+
"path": "/ai-list-checks",
|
|
1140
|
+
"input_schema": {
|
|
1141
|
+
"type": "object",
|
|
1142
|
+
"properties": {
|
|
1143
|
+
"site_id": {
|
|
1144
|
+
"type": "string",
|
|
1145
|
+
"description": "Filter by site ID"
|
|
1146
|
+
},
|
|
1147
|
+
"prompt_id": {
|
|
1148
|
+
"type": "string",
|
|
1149
|
+
"description": "Filter by prompt ID"
|
|
1150
|
+
},
|
|
1151
|
+
"platform_id": {
|
|
1152
|
+
"type": "string",
|
|
1153
|
+
"description": "Filter by AI platform"
|
|
1154
|
+
},
|
|
1155
|
+
"brand_mentioned": {
|
|
1156
|
+
"type": "boolean",
|
|
1157
|
+
"description": "Filter by whether brand was mentioned"
|
|
1158
|
+
},
|
|
1159
|
+
"sentiment": {
|
|
1160
|
+
"type": "string",
|
|
1161
|
+
"description": "Filter by sentiment (positive, neutral, negative)"
|
|
1162
|
+
},
|
|
1163
|
+
"since": {
|
|
1164
|
+
"type": "string",
|
|
1165
|
+
"description": "Start date (ISO 8601)"
|
|
1166
|
+
},
|
|
1167
|
+
"until": {
|
|
1168
|
+
"type": "string",
|
|
1169
|
+
"description": "End date (ISO 8601)"
|
|
1170
|
+
},
|
|
1171
|
+
"limit": {
|
|
1172
|
+
"type": "integer",
|
|
1173
|
+
"description": "Max results"
|
|
1174
|
+
},
|
|
1175
|
+
"offset": {
|
|
1176
|
+
"type": "integer",
|
|
1177
|
+
"description": "Pagination offset"
|
|
1178
|
+
}
|
|
1179
|
+
}
|
|
1180
|
+
}
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
"name": "ai_get_check",
|
|
1184
|
+
"description": "Get details for a specific AI check result including the full response, citations, and entities.",
|
|
1185
|
+
"method": "GET",
|
|
1186
|
+
"path": "/ai-get-check",
|
|
1187
|
+
"input_schema": {
|
|
1188
|
+
"type": "object",
|
|
1189
|
+
"properties": {
|
|
1190
|
+
"id": {
|
|
1191
|
+
"type": "string",
|
|
1192
|
+
"description": "Check ID"
|
|
1193
|
+
}
|
|
1194
|
+
},
|
|
1195
|
+
"required": [
|
|
1196
|
+
"id"
|
|
1197
|
+
]
|
|
1198
|
+
}
|
|
1199
|
+
}
|
|
1200
|
+
]
|
|
1201
|
+
}
|