# market2000.xyz Get Trends

> market2000.xyz Get Trends is a paid API for AI agents from market2000.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns the top trending search topics for a given country and time period, with count and freshness metadata

## Facts

- Endpoint: GET https://market2000.xyz/get_trends
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market2000-xyz-get-trends-e531c678
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EFHJD0hXazY5yf-_YCJjI

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 market2000-xyz-get-trends-e531c678
```

Example prompt: What are the top 20 daily trending search topics in the US right now? I want fresh results, not cached ones.

## When to prefer this

Use this endpoint when an agent needs to quickly discover what topics are currently trending in a specific country for purposes like content generation, SEO, market research, or social listening. Prefer this over manual scraping or social media APIs when you need a clean ranked list of trending search queries with minimal latency and pay-per-call cost efficiency via x402 on Base.

## Known failure modes

- Invalid or unsupported geo code returns an error or empty trends list
- Unsupported period value may cause a 400 bad request
- Payment not settled via x402 returns a 402 Payment Required before data is served
- Count exceeding service limits may be capped or rejected
- Stale cache may return trends that are hours old even when cached=false is requested

## How this service works

An origin the crawlers already index. We count what AI agents try to buy, what they are refused, and what the AI companies take without sending anyone back. Sold per call in USDC.

## Output

A JSON object containing a list of trending topic strings (e.g. ['NBA Finals','AI news','Taylor Swift']), the geo region, count, period granularity, a cached flag indicating whether results are fresh, and a fetched_at ISO timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "period",
      "geo"
     ],
     "properties": {
      "geo": {
       "type": "string",
       "description": "ISO 3166-1 alpha-2 country code (e.g. 'US', 'IN', 'GB') or 'WORLDWIDE'"
      },
      "period": {
       "enum": [
        "daily",
        "weekly",
        "monthly"
       ],
       "type": "string",
       "description": "Trend window: 'daily' (today's hot searches), 'weekly' (last 7 days), 'monthly' (top searches this year)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "period",
      "geo",
      "fetched_at",
      "count",
      "trends"
     ],
     "properties": {
      "geo": {
       "type": "string"
      },
      "note": {
       "type": "string",
       "description": "Optional caveat about data source or fallback used"
      },
      "count": {
       "type": "integer"
      },
      "cached": {
       "type": "boolean"
      },
      "period": {
       "type": "string"
      },
      "trends": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "Ranked list of trending search queries (most popular first)"
      },
      "fetched_at": {
       "type": "string",
       "description": "ISO 8601 timestamp when data was fetched"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "geo": "US",
  "count": 20,
  "cached": false,
  "period": "daily",
  "trends": [
   "NBA Finals",
   "AI news",
   "Stock market",
   "Taylor Swift",
   "Weather"
  ],
  "fetched_at": "2026-06-07T10:00:00Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market2000-xyz-get-trends-e531c678/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from market2000.xyz](https://www.zero.xyz/host/market2000.xyz/llms.txt)
