# TensorFeed AI Agents Directory

> TensorFeed AI Agents Directory is a paid API for AI agents from tensorfeed.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns the enriched AI agents catalog joined with live provider status, recent news mentions, 24h traffic, and model pricing, ranked by a derived trending score.

## Facts

- Endpoint: GET https://tensorfeed.ai/api/premium/agents/directory
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tensorfeed-ai-c939f2f8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_C2DK6BnrSDCTkGyRGyO_p

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 tensorfeed-ai-c939f2f8
```

Example prompt: Show me the current trending AI agents directory — I want to see which agents are hot right now, including their live provider status, recent news mentions, 24-hour traffic, and sample pricing, all ranked by trending score.

## When to prefer this

Choose this endpoint when you need a comprehensive, already-enriched snapshot of the AI agent landscape with trending signals baked in — especially useful for agent-discovers-agent workflows, competitive monitoring, or when you want a single paid call that combines catalog, live status, news, traffic, and pricing rather than assembling those from multiple sources yourself.

## Known failure modes

- Payment not included or invalid — 402 Payment Required
- Rate limiting or quota exceeded — 429 Too Many Requests
- Upstream data source unavailable causing stale or partial enrichment
- Provider status feed timeout resulting in incomplete records
- No agents match current trending threshold — empty result set

## How this service works

Enriched AI agents directory. One paid call returns the catalog joined with live provider status, recent news mentions, 24h agent traffic, and sample model pricing, ranked by a derived trending score. The agent-discovers-agent feed.

## Output

A ranked catalog of AI agents enriched with real-time provider status, recent news mentions, 24-hour agent traffic volume, sample model pricing, and a computed trending score — effectively a snapshot of the most active and talked-about agents at the time of the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "sort": {
       "enum": [
        "trending",
        "name",
        "recent_news",
        "agent_traffic"
       ],
       "type": "string"
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "status": {
       "enum": [
        "operational",
        "degraded",
        "down",
        "unknown"
       ],
       "type": "string"
      },
      "category": {
       "type": "string",
       "description": "Filter by category id (coding, search, voice, etc)."
      },
      "capability": {
       "type": "string",
       "description": "Filter to agents declaring this capability."
      },
      "open_source": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

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