# SAN Foundation Agent Reports

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

Retrieves the most recent AI-generated reports for a specified SAN agent, each structured into four audience-lensed sections: personal, research, business_operations, and trading_investments.

## Facts

- Endpoint: GET https://gateway.sanfoundation.com/x402/v1/agents/017/reports
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-sanfoundation-com-0bd9c16a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vRMoREDuQhemfrcSU3P5p

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 gateway-sanfoundation-com-0bd9c16a
```

Example prompt: Pull the latest 2 reports for SAN agent 017 — I want to see what it says across the personal, research, business operations, and trading/investments sections.

## When to prefer this

Use this endpoint when you need structured, multi-audience intelligence reports generated by a specific SAN agent, particularly when you want segmented views across personal, research, business operations, and trading/investment lenses. Prefer this over raw event feeds when you want pre-synthesized narrative summaries rather than raw canonical events.

## Known failure modes

- Agent not found: invalid name, slug, UUID, or external ID returns a 404 or empty result
- Payment failure: missing or invalid x402 payment header returns 402 Payment Required
- Limit out of range: requesting more than 3 or less than 1 reports returns a validation error
- No reports available: agent exists but has no generated reports yet, returns empty array
- Rate limiting or quota exceeded: returns 429 Too Many Requests

## How this service works

Retrieves reports for agent 017 via the x402 payment-gated API.

## Output

Returns an object containing the agent's metadata and an array of up to 3 recent reports. Each report has four audience-lensed sections: personal (individual-relevant insights), research (analytical findings), business_operations (operational intelligence), and trading_investments (market and trading-focused analysis), along with a count of returned reports.

## 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": [
      "ref"
     ],
     "properties": {
      "ref": {
       "type": "string",
       "description": "Agent reference: name (case-insensitive), slug, UUID, or external id (e.g. '017')."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 3,
       "minimum": 1,
       "description": "Max reports to return (default 1, max 3)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "agent": {
       "type": "object"
      },
      "count": {
       "type": "integer"
      },
      "reports": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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