# Keelbase Signal Daily Latest

> Keelbase Signal Daily Latest is a paid API for AI agents from signal.keelbase.io, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns the most recent daily Keelbase Signal publication including all normalized event records and a full Markdown synthesis.

## Facts

- Endpoint: GET https://signal.keelbase.io/api/v1/daily/latest
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/keelbase-signal-daily-latest-26bc35bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4615OK01-ePXhgHlFo5L2

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 keelbase-signal-daily-latest-26bc35bc
```

Example prompt: Can you pull the latest Keelbase Signal daily report for me — I want the full records, the synthesis, and any warnings about data completeness?

## When to prefer this

Use this endpoint when you need the most current Keelbase Signal daily publication without specifying a date — it always returns the latest available record set. Prefer this over date-specific endpoints when you want the freshest data automatically. Ideal for daily briefing pipelines, monitoring workflows, or any agent task requiring up-to-date Keelbase Signal intelligence.

## Known failure modes

- No latest publication available — endpoint may return empty or placeholder fixture data
- Payment not processed (x402 protocol) — call rejected without valid $0.03 USDC payment
- Rate limiting or quota exceeded — returns 429 or similar error
- Incomplete data — completeness metadata may indicate partial records with warnings
- Network timeout if synthesis generation is slow

## How this service works

Complete latest daily Keelbase Signal records and full synthesis.

## Output

Returns a JSON object containing: a data_status field indicating whether data is fixture or production, a publication object with the complete latest daily publication and its Markdown synthesis, an array of normalized Signal event records (each with factual reporting, Keelbase analysis, assessment, source attribution, and correction lineage), a completeness object with bounded-response and record-count metadata, and a warnings array listing any data issues.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {},
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "data_status",
      "publication",
      "completeness",
      "records",
      "warnings"
     ],
     "properties": {
      "records": {
       "type": "array",
       "items": {
        "type": "object",
        "description": "A normalized public Keelbase Signal event record with factual reporting, Keelbase analysis, assessment, source attribution, and correction lineage.",
        "additionalProperties": true
       }
      },
      "warnings": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "data_status": {
       "type": "string",
       "description": "Whether the returned publication is fixture or production data."
      },
      "publication": {
       "type": "object",
       "description": "The complete latest daily publication and Markdown synthesis.",
       "additionalProperties": true
      },
      "completeness": {
       "type": "object",
       "description": "Bounded-response and record-count metadata.",
       "additionalProperties": true
      }
     },
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/keelbase-signal-daily-latest-26bc35bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from signal.keelbase.io](https://www.zero.xyz/host/signal.keelbase.io/llms.txt)
