# Signalis Pulse Narrative Detail

> Signalis Pulse Narrative Detail is a paid API for AI agents from api.signalis.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches a single AI-business narrative by ID, returning its title, stage, content items, and source attributions from Signalis Pulse.

## Facts

- Endpoint: GET https://api.signalis.dev/v1/pulse/narratives/%7Bid%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalis-pulse-narrative-detail-3c2e72e7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VmucSOHt6i5atMJpm-nVZ

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 signalis-pulse-narrative-detail-3c2e72e7
```

Example prompt: Pull the full detail for Signalis Pulse narrative ID 4034 — I want to see its current stage, the title, and all the source articles and URLs behind it.

## When to prefer this

Use this endpoint when you have a specific narrative ID (obtained from the Pulse narrative list endpoint) and need full detail: the lifecycle stage, title, and all underlying content items with source attribution. Prefer this over the digest or raw content endpoints when you want structured, narrative-level intelligence about a single tracked AI-business story rather than bulk or historical data.

## Known failure modes

- Invalid or nonexistent narrative ID returns an error or empty result
- Payment failure (insufficient USDC balance) results in HTTP 402 with no content returned
- Narrative ID that has expired or been archived may return a 404 or empty narrative object
- Malformed query parameter format causes a 400 bad request

## How this service works

Signalis synthesizes a 20-source roster into intelligence digests every 4 hours and tracks AI-business narratives with Pulse. Pay-per-call in USDC on Base via x402 — no accounts, no API keys.

## Output

Returns a JSON object confirming the paid call succeeded, along with the narrative's ID, current lifecycle stage (e.g. 'building'), title, and an array of content items each containing a URL, title, and source name (e.g. 'hackernews').

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Narrative id (path parameter)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "charged": true,
  "narrative": {
   "id": 4034,
   "stage": "building",
   "title": "AI-Native Founder Business Models and Organizational Strategy",
   "contentItems": [
    {
     "url": "https://...",
     "title": "Show HN: agent-native org tooling",
     "source": "hackernews"
    }
   ]
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalis-pulse-narrative-detail-3c2e72e7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.signalis.dev](https://www.zero.xyz/host/api.signalis.dev/llms.txt)
