# ForgeMesh Intent Trends API

> ForgeMesh Intent Trends API is a paid API for AI agents from ads.forgemesh.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns trending x402 API endpoints and categories ranked by autonomous agent request volume, analogous to Google Trends but for AI agent traffic

## Facts

- Endpoint: GET https://ads.forgemesh.io/api/intent/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/forgemesh-intent-trends-api-c4b63629
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gJCbmagwC_LgFaHAJgWZ_

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 forgemesh-intent-trends-api-c4b63629
```

Example prompt: What are the top 20 trending x402 endpoints and categories that autonomous agents have been hitting most over the last 7 days?

## When to prefer this

Use this endpoint when an AI agent needs to discover what other autonomous agents are currently calling most — useful for API discovery, demand sensing, trend monitoring, or building agent marketplaces. Prefer this over static API directories when you need live, traffic-weighted popularity signals specific to the x402 agent ecosystem.

## Known failure modes

- Invalid `window` enum value returns 400 bad request
- `limit` outside 1-100 range returns validation error
- Service unavailable or upstream data lag returns 503
- Payment not received or x402 handshake failure returns 402

## How this service works

Returns the top-requested x402 endpoints and categories for a time window, each with total and agent-only probe counts. Use it to find categories agents are actively searching for before you build.

## Output

Returns a JSON object containing a list of top x402 endpoints ranked by agent request volume and a list of trending categories, scoped to the requested time window (24h, 7d, 30d, or all-time), with up to `limit` results per section.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "window": {
       "enum": [
        "24h",
        "7d",
        "30d",
        "all"
       ],
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "window": {
       "type": "string"
      },
      "categories": {
       "type": "array"
      },
      "top_endpoints": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "window": "7d",
  "top_endpoints": [
   {
    "probes": 18359,
    "service": "coinopai",
    "endpoint": "/api/kronos/signals",
    "agent_probes": 9100
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forgemesh-intent-trends-api-c4b63629/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from ads.forgemesh.io](https://www.zero.xyz/host/ads.forgemesh.io/llms.txt)
