# Cult OS Crypto Signal Feed

> Cult OS Crypto Signal Feed is a paid API for AI agents from www.cultos.dev, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-14).

Fetches a curated feed of crypto signals filtered by category (news, social, engineering, releases) from multiple aggregated sources

## Facts

- Endpoint: POST https://www.cultos.dev/services/crypto-feed
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cult-os-crypto-signal-feed-6327a848
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pucVKE4xAGkyEdOxp8NaT

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 cult-os-crypto-signal-feed-6327a848 -d '<json body>'
```

Example prompt: Pull me the top 10 crypto engineering signals from the last 24 hours using Cult OS's crypto feed — filter by the 'engineering' category.

## When to prefer this

Choose this endpoint when you need a pre-aggregated, multi-source crypto signal feed across categories like news, social chatter, engineering commits, or project releases — especially useful for agents that need structured intelligence without building their own crypto data pipeline. Prefer over raw RSS or single-source APIs when breadth across 9+ sources matters.

## Known failure modes

- No items returned if no signals match the query or time window
- sourceErrors array populated if one or more upstream sources fail to respond
- staleSources list populated if cached data is older than expected
- limit exceeded if request value is above maximum of 20
- sinceHours out of range if value is below 1 or above 168

## How this service works

Crypto Signal Feed

## Output

A JSON object containing a list of signal feed items from up to 9 checked sources, along with metadata including the generation timestamp, number of sources checked and available, any stale sources, and any source errors encountered.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 20,
   "minimum": 1
  },
  "query": {
   "type": "string",
   "maxLength": 120
  },
  "category": {
   "enum": [
    "news",
    "social",
    "engineering",
    "releases"
   ],
   "type": "string"
  },
  "sinceHours": {
   "type": "integer",
   "default": 48,
   "maximum": 168,
   "minimum": 1
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "feed": "crypto",
  "items": [],
  "generatedAt": "2026-09-13T00:00:00.000Z",
  "sourceErrors": [],
  "staleSources": [],
  "sourcesChecked": 9,
  "sourcesAvailable": 9
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cult-os-crypto-signal-feed-6327a848/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.cultos.dev](https://www.zero.xyz/host/www.cultos.dev/llms.txt)
