# 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-13).

Retrieves full narrative detail for a single AI-business narrative, including content items, source attribution, and lifecycle stage updates.

## Facts

- Endpoint: GET https://api.signalis.dev/v1/pulse/narratives/:id
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/signalis-pulse-narrative-detail-60f32332
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EL_3zepQUIABjsLhvOsyg

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-60f32332
```

Example prompt: Pull the full Pulse narrative detail for narrative id 'narr_abc123' — I want to see all the content items, which sources are driving it, and what lifecycle stage it's in right now.

## When to prefer this

Use this endpoint when you have a specific narrative id (e.g. obtained from the active narratives listing endpoint) and need the full detail — content items, sources, and lifecycle updates — for that single narrative. Prefer over the digest endpoints when you need granular per-narrative data rather than a broad historical summary.

## Known failure modes

- Invalid or unknown narrative id returns a 404 or empty result
- Pulse service unavailable results in no charge and an error response
- Malformed id parameter causes a 400 bad request
- Rate limiting or payment failure returns a 402 or 429 error

## How this service works

Paid ($0.01 USDC via x402). Narrative detail: content items, source attribution, and lifecycle updates for one narrative. Proxied from the Pulse service. Compute-first / settle-after — you are never charged when Pulse is unavailable or returns an error.

## Output

Returns structured detail for a single narrative: the list of content items associated with it, source attribution data, and lifecycle stage/status updates as tracked by the Pulse service.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/signalis-pulse-narrative-detail-60f32332/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)
