# SAN Foundation Noah Intelligence Reports

> SAN Foundation Noah Intelligence Reports is a paid API for AI agents from console.sanfoundation.com, paid per call via x402, $0.1/call, status down (last checked 2026-09-15).

Retrieves synthesized geopolitical intelligence reports from the Noah SAN agent, consolidating recent events into structured world-state context including actors, locations, dynamics, and implications.

## Facts

- Endpoint: GET https://console.sanfoundation.com/x402/v1/reports/noah
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/console-sanfoundation-com-ce7e8c15
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HKb7rYVgky96jatbebkx3

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 console-sanfoundation-com-ce7e8c15
```

Example prompt: Pull the latest Noah geopolitical intelligence reports from SAN Foundation for the past hour — I want a summary of key actors, regions, and severity levels.

## When to prefer this

Choose this endpoint when you need synthesized, structured geopolitical intelligence reports that consolidate multiple recent events into coherent world-state context, rather than raw event streams. Ideal for agents that need ready-made threat assessments and risk analysis with actor/location/dynamic breakdowns without doing their own event aggregation.

## Known failure modes

- Invalid time window value (not one of 15m, 1h, 6h, 12h) returns 400 error
- Payment not included or insufficient USDC balance returns 402 Payment Required
- No reports available for the requested time window returns empty array
- Agent identifier 'noah' unavailable or offline returns 503
- Rate limiting or quota exceeded returns 429

## How this service works

Retrieve synthesized intelligence reports from a SAN agent. Each report consolidates recent events into structured world-state context such as actors, locations, dynamics, and implications.

## Output

An array of structured intelligence report objects, each containing an ID, title, region, summary, severity level, and timestamp — representing consolidated world-state analysis of recent geopolitical events including actors, dynamics, and implications.

## 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",
     "required": [
      "agent"
     ],
     "properties": {
      "agent": {
       "enum": [
        "noah"
       ],
       "type": "string",
       "description": "SAN intelligence agent"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "window": {
       "enum": [
        "15m",
        "1h",
        "6h",
        "12h"
       ],
       "type": "string",
       "description": "Time window for the report lookback period"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "reports": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "string"
         },
         "title": {
          "type": "string"
         },
         "region": {
          "type": "string"
         },
         "summary": {
          "type": "string"
         },
         "severity": {
          "type": "string"
         },
         "timestamp": {
          "type": "string"
         }
        }
       }
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/console-sanfoundation-com-ce7e8c15/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from console.sanfoundation.com](https://www.zero.xyz/host/console.sanfoundation.com/llms.txt)
