# San Foundation Noah Geopolitical Intelligence Reports

> San Foundation Noah Geopolitical 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).

Fetches real-time geopolitical risk reports, threat assessments, and strategic briefings from the Noah intelligence engine over a configurable lookback window

## Facts

- Endpoint: GET https://console.sanfoundation.com/x402/v1/noah/reports
- 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-5aa30dcb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_buEF9cZcUUCt-lJm_B3nt

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-5aa30dcb
```

Example prompt: Pull the latest Noah geopolitical intelligence reports from the past hour — I want to see threat assessments and severity levels by region.

## When to prefer this

Use this endpoint when you need structured, machine-readable geopolitical risk reports with severity scores and regional attribution, especially for real-time monitoring of global threats over short lookback windows (15 minutes to 12 hours). Prefer this over general news APIs when you need curated intelligence-grade analysis rather than raw news headlines.

## Known failure modes

- Invalid window parameter returns validation error
- No reports available for the requested time window returns empty array
- Payment failure (402) if USDC payment not properly attached
- Rate limiting or quota exhaustion returns 429
- Service unavailability returns 503

## How this service works

Noah geopolitical intelligence reports — real-time geopolitical risk analysis, threat assessments, and strategic briefings powered by the San Foundation intelligence engine

## Output

Returns an array of geopolitical intelligence reports, each containing a unique ID, title, affected region, summary, severity level, and timestamp, covering events detected within the specified time window.

## 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",
     "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-5aa30dcb/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)
