Google Trends Data
by Google Trends
About
Real-time Google Trends data including interest over time, regional breakdowns, related topics and queries. Supports up to 5 keywords per search, geographic filtering, date ranges (hourly to 5 years), and search property filters (web, images, news, YouTube, shopping).
Access Data
For AI Agents
MCP ServerInstall the x402 MCP server to let your AI agent access this data with automatic USDC payments on Base.
Add to claude_desktop_config.json:
{
"mcpServers": {
"x402": {
"command": "npx",
"args": ["@serendb/x402-mcp-server"],
"env": {
"X402_GATEWAY_URL": "https://x402.serendb.com",
"WALLET_PRIVATE_KEY": "0x...",
"BASE_RPC_URL": "https://mainnet.base.org"
}
}
}
}claude mcp add x402 \ --env X402_GATEWAY_URL=https://x402.serendb.com \ --env WALLET_PRIVATE_KEY=your_private_key \ --env BASE_RPC_URL=https://mainnet.base.org \ -- npx @serendb/x402-mcp-server
Replace your_private_key with your actual private key.
First, install globally to avoid timeout issues:
npm install -g @serendb/x402-mcp-server
Then add to ~/.cursor/mcp.json:
{
"mcpServers": {
"x402": {
"command": "x402-mcp-server",
"args": [],
"env": {
"X402_GATEWAY_URL": "https://x402.serendb.com",
"WALLET_PRIVATE_KEY": "0x...",
"BASE_RPC_URL": "https://mainnet.base.org"
}
}
}
}For Developers
Direct HTTP APIAccess data directly via HTTP using the x402 payment protocol.
- Send your query request to the gateway
- Receive
HTTP 402with payment requirements (amount, wallet, EIP-712 data) - Sign the payment authorization with your wallet
- Retry request with
X-PAYMENTheader containing the signature - Receive your data - payment settles automatically via USDC on Base
curl -X POST https://x402.serendb.com/api/proxy \
-H "Content-Type: application/json" \
-d '{
"providerId": "72f211f1-09fe-4fa4-aff6-c534080e1d4a",
"agentWallet": "0xYourWalletAddress",
"request": {
"method": "GET",
"path": "/endpoint"
}
}'This returns 402 Payment Required with the payment details you need to sign.
After signing the EIP-712 authorization, add the base64-encoded signature:
curl -X POST https://x402.serendb.com/api/proxy \
-H "Content-Type: application/json" \
-H "X-PAYMENT: <base64-encoded-signature>" \
-d '{ ... }'Pricing
Pay per API call via x402 protocol
Provider Details
0x83334ef0C6f6396413C508A7762741e9FD8B20E9