Tools
Google Trends
Get Google Trends data for one or more keywords.
Analyze search trend data to understand how interest in specific keywords has changed over time, compare keyword popularity, and discover seasonal trends.
Playground
Your organization, project and token stay in this browser's local storage and are sent straight to the API — this page never sees them.
Billing
Fixed cost per item requested, plus one search-trends request. That one request covers every keyword you pass, so asking about five terms costs the same as asking about one.
These usage SKUs can be charged on a call.
| SKU | Credits | Description |
|---|---|---|
| Tool call | 1 per request | Charged once per successful item, on top of any usage below. |
| Search trends | 9 per request | Interest-over-time data. One request covers every term you pass. |
Schemas
item is what you send, config how the tool behaves,
and the response is what you get back.
Item
objectkeywords
array
required
List of keywords to analyze (up to 5)
{
"keywords": [
"string"
]
}
Configuration
objectlocation_id
integer | null
Location ID (optional)
location_request
string | null
Location request (ex: Paris, FR), will translate to location ID
country_code
string | null
ISO3166 country code (ex: GB)
lang_code
string | null
BCP47 language code (ex: "en", "en-GB")
device
string
Device to use for search (optional - defaults to mobile)
{
"location_id": null,
"location_request": null,
"country_code": null,
"lang_code": null,
"device": "mobile"
}
Response
objectkeywords
array
required
List of keywords analyzed
date_from
string
required
Start date of the trends data in YYYY-MM-DD format
date_to
string
required
End date of the trends data in YYYY-MM-DD format
graph
object | null
topics
object | null
queries
object | null
{
"keywords": [
"string"
],
"date_from": "string",
"date_to": "string",
"graph": null,
"topics": null,
"queries": null
}
Endpoints
http://agents.botify.com/{organization}/{project}/google_trends/process
http://agents.botify.com/{organization}/{project}/google_trends/batch_process
http://agents.botify.com/{organization}/{project}/google_trends/async_process
http://agents.botify.com/{organization}/{project}/google_trends/async_batch_process
See running a long job in the background for the polling flow.
cURL
curl -X POST "http://agents.botify.com/{organization}/{project}/google_trends/process" \
-H "Authorization: Bearer $BOTIFY_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"item": {
"keywords": []
}
}'
Over MCP
This tool is exposed as the MCP tool google_trends. An MCP client passes
organization, project and item as tool arguments.
Set up MCP →
Raw metadata
- GET /agents/google_trends — this page as JSON.
- /agents/google_trends/skill.md — Markdown for coding agents.