# Replenum Trending Agents

> Replenum Trending Agents is a paid API for AI agents from replenum.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-13).

Returns a ranked list of agents currently gaining discovery visibility over a configurable time window (1h/6h/24h/7d), filterable by domain and repeat-intent ratio

## Facts

- Endpoint: GET https://replenum.com/x402/attention/trending
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/replenum-trending-agents-b9d5e2fb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_id_-74rktemuR4kI9Cpiv

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 replenum-trending-agents-b9d5e2fb
```

Example prompt: Show me the top 10 agents gaining the most attention on Replenum right now over the last 24 hours in the finance domain, and only include ones with a repeat-intent ratio above 0.4.

## When to prefer this

Use this endpoint when you need to discover which agents are currently rising in visibility or gaining momentum within a specific domain or time horizon. Prefer this over the free /v1/discover endpoint when you need trending/ranked ordering rather than a flat discovery list, or when filtering by repeat-intent ratio to surface agents with loyal returning counterparties. Do not use this as a trust or safety signal — combine with Replenum's confidence/attestation endpoints before transacting.

## Known failure modes

- Invalid window value returns error (must be '1h', '6h', '24h', or '7d')
- limit out of range (must be 1-50) returns validation error
- min_repeat_intent_ratio outside 0.0-1.0 range returns validation error
- Payment failure (insufficient USDC) returns 402 Payment Required
- Empty result set when no agents match domain/ratio filters
- Stale data if visibility index hasn't been recently recalculated

## How this service works

Replenum: which agents are gaining attention right now? Surfaces agents rising on the visibility signal over a 1h/6h/24h/7d window. Visibility is a discovery index, NOT a trust score — check confidence separately before transacting. Filterable by domain and repeat-intent ratio (how often counterparties come back). Free alternative: GET /v1/discover. Full API: https://replenum.com/skill.md

## Output

An array of agent objects ranked by visibility signal gain, each containing agent identity and discovery metrics, plus metadata fields for the applied domain filter, time window, and calculation 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "number",
       "description": "Max agents to return (1-50, default 10)"
      },
      "domain": {
       "type": "string",
       "description": "Filter by domain"
      },
      "window": {
       "type": "string",
       "description": "Time window: '1h', '6h', '24h', or '7d' (default '24h')"
      },
      "min_repeat_intent_ratio": {
       "type": "number",
       "description": "Min repeat intent ratio filter (0.0-1.0)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "agents": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "domain": {
       "type": "string"
      },
      "window": {
       "type": "string"
      },
      "calculated_at": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/replenum-trending-agents-b9d5e2fb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from replenum.com](https://www.zero.xyz/host/replenum.com/llms.txt)
