# Kael Ecosystem Pulse Headlines

> Kael Ecosystem Pulse Headlines is a paid API for AI agents from kael-ecosystem-pulse.onrender.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns compact, lane-tagged headline titles summarizing the latest activity across the Solana ecosystem over a 24-hour window

## Facts

- Endpoint: POST https://kael-ecosystem-pulse.onrender.com/v1/pulse/headlines
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kael-ecosystem-pulse-headlines-31db1e4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ilKJBzR5pD-Thxd3JVJIA

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 kael-ecosystem-pulse-headlines-31db1e4a -d '<json body>'
```

Example prompt: Pull the latest 24-hour Solana ecosystem pulse headlines and filter them to just the DeFi and NFT lanes.

## When to prefer this

Choose this endpoint when you need a fast, low-cost ($0.02 USDC) structured digest of Solana ecosystem headlines tagged by activity lane, without needing full article content or deep analysis. Ideal for monitoring dashboards, newsletter pipelines, or agent workflows that need a quick 24-hour pulse of the Solana ecosystem rather than raw social data or full news articles.

## Known failure modes

- Missing required 'ecosystem' query param — validation error returned
- Missing required 'window' query param — schema validation failure
- Invalid lane value — may return empty results or an error
- Payment not provided or insufficient — x402 payment required error
- Service cold-start latency on Render free tier — slow first response or timeout
- No headlines available for the requested lanes — empty result set returned

## How this service works

Kael Pulse Headlines — compact lane-tagged titles ($0.02 USDC exact)

## Output

A set of compact, lane-tagged headline titles reflecting the most significant activity or events in the Solana ecosystem over the past 24 hours. Each headline is associated with a lane (e.g. DeFi, NFT, infrastructure) to categorize the type of activity. The response is structured and concise, suitable for quick consumption or further processing.

## 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": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ecosystem",
      "window"
     ],
     "properties": {
      "lanes": {
       "type": "string",
       "description": "optional comma-separated lanes"
      },
      "window": {
       "type": "string",
       "const": "24h"
      },
      "ecosystem": {
       "type": "string",
       "const": "solana"
      }
     }
    }
   },
   "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/kael-ecosystem-pulse-headlines-31db1e4a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kael-ecosystem-pulse.onrender.com](https://www.zero.xyz/host/kael-ecosystem-pulse.onrender.com/llms.txt)
