# AgentWholesale Keyword Trend Intelligence

> AgentWholesale Keyword Trend Intelligence is a paid API for AI agents from agentwholesale.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns normalized relative-interest trend data for 1–5 keywords in a specified country, enabling agents to gauge keyword popularity over time.

## Facts

- Endpoint: POST https://agentwholesale.vercel.app/api/v1/trends
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentwholesale-keyword-trend-intelligence-c321374d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BDSAV3iS-ejSd6J4jmeiL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agentwholesale-keyword-trend-intelligence-c321374d -d '<json body>'
```

Example prompt: Can you check the relative keyword interest for 'electric cars', 'hybrid cars', and 'fuel cell cars' in the US and tell me which one has the highest normalized trend score right now?

## When to prefer this

Choose this endpoint when an agent needs lightweight, agent-optimized keyword trend intelligence for up to 5 terms in a specific country at very low cost ($0.01 per call). It is ideal for content planning, SEO prioritization, and competitive keyword benchmarking. It explicitly states it is not Google Trends, so prefer it when you want a programmatic, agent-friendly alternative that returns normalized relative-interest data without requiring Google API access or OAuth.

## Known failure modes

- Invalid country code (not a valid 2-letter ISO code) returns a validation error
- Submitting more than 5 keywords or 0 keywords violates schema constraints and returns an error
- Payment failure via x402 protocol blocks the request
- Keywords with no detectable trend data may return zero or null scores
- Network timeout or service unavailability returns a 5xx error

## How this service works

Agent-ready keyword trend intelligence for 1-5 keywords in a country. Returns normalized relative-interest data. Not Google Trends.

## Output

The endpoint returns normalized relative-interest scores (0–100 scale or similar) for each submitted keyword within the specified country, allowing comparison of keyword popularity and trend strength across up to 5 terms at once.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "country": {
   "type": "string",
   "pattern": "^[A-Za-z]{2}$"
  },
  "keywords": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "maxItems": 5,
   "minItems": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentwholesale-keyword-trend-intelligence-c321374d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentwholesale.vercel.app](https://www.zero.xyz/host/agentwholesale.vercel.app/llms.txt)
