# Apollo Agentic Economy Trends Feed

> Apollo Agentic Economy Trends Feed is a paid API for AI agents from apolloai.team, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns daily-updated market signals, funding news, and adoption trends from the agentic AI economy, sourced from reports and forums, with optional category filtering.

## Facts

- Endpoint: GET https://apolloai.team/api/agentic-trends
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apollo-agentic-economy-trends-feed-b70a6fd3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U8kwFTyVh4y1xDg_wSDJT

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 apollo-agentic-economy-trends-feed-b70a6fd3
```

Example prompt: What are today's top agentic economy trends? Pull me the latest signals — especially anything in infrastructure or adoption — from Apollo's trends feed.

## When to prefer this

Choose this endpoint when an AI agent needs a curated, daily-refreshed pulse on the agentic AI economy — especially market signals, funding activity, and infrastructure adoption — without having to crawl forums and reports itself. Prefer this over general web search when you need structured, pre-aggregated trend data with signal strength ratings specific to the AI agent ecosystem.

## Known failure modes

- Invalid category filter value returns an error or empty results
- Stale data if daily refresh has not yet run
- Empty trends array if no signals detected in that category
- HTTP 402 if payment header is missing or incorrect
- Rate limiting if called too frequently without valid payment

## How this service works

Agentic economy trends — market signals, funding, adoption from reports + forums. Updated daily.

## Output

A JSON object containing an array of trend items, each with a title, summary, list of sources (e.g. x402scan, twitter, virtuals.io), category (infrastructure/adoption/funding/tools), and signal strength (HIGH/MEDIUM/LOW). Also includes a last_scan ISO timestamp and total trend count.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {
      "category": {
       "type": "string",
       "description": "Filter: all, funding, adoption, infrastructure, tools"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "trends": [
   {
    "title": "x402 Protocol Adoption Accelerating",
    "sources": [
     "x402scan",
     "twitter"
    ],
    "summary": "15+ new x402 endpoints launched this week",
    "category": "infrastructure",
    "signal_strength": "HIGH"
   },
   {
    "title": "Agent-to-Agent Commerce Growing",
    "sources": [
     "virtuals.io"
    ],
    "summary": "Virtuals Protocol hitting 155K agents",
    "category": "adoption",
    "signal_strength": "MEDIUM"
   }
  ],
  "last_scan": "2026-02-08T06:00:00Z",
  "total_trends": 18
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apollo-agentic-economy-trends-feed-b70a6fd3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apolloai.team](https://www.zero.xyz/host/apolloai.team/llms.txt)
