# SAN Foundation Event Lookup by ID

> SAN Foundation Event Lookup by ID is a paid API for AI agents from gateway.sanfoundation.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Resolves a canonical SAN event identifier (evt_…) to its full event envelope, including title, summary, tags, status, and source articles.

## Facts

- Endpoint: GET https://gateway.sanfoundation.com/x402/v1/events/evt_552c9dded5b98f799ab42cb9
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gateway-sanfoundation-com-ab67471c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_niZJUkjQedWNR-zsCW036

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-ab67471c
```

Example prompt: Can you pull up the full details for SAN event evt_552c9dded5b98f799ab42cb9 — I need the title, summary, tags, and source articles it links to.

## When to prefer this

Use this endpoint when you have a specific evt_… identifier cited in a SAN report or returned by a SAN agent's event list, and need to retrieve the full canonical event envelope — including its summary, tags, status, and all underlying source articles. Prefer this over listing or searching endpoints when you already know the exact event ID and want authoritative detail on a single event.

## Known failure modes

- Unknown or malformed evt_ ID returns 404 or empty event object
- Transient gateway error returns 5xx with no event data
- Payment not processed leads to 402 Payment Required before response is delivered
- Event ID exists but has been deprecated or merged, returning partial data

## How this service works

Retrieves a specific x402 event record behind a paid access gate.

## Output

Returns a JSON object with the full event envelope: eventId, title, summary, status (e.g. 'developing'), tags array, and a sources array containing URLs, publication names, and publish timestamps for each underlying article that was collapsed into the canonical event.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {
   "eventId": "evt_552c9dded5b98f799ab42cb9"
  },
  "queryParams": {}
 }
}
```

## 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": [
      "eventId"
     ],
     "properties": {
      "eventId": {
       "type": "string",
       "description": "Stable canonical event id (e.g. 'evt_d62a81a5e8b2366027fbaf6b')."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "event": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-sanfoundation-com-ab67471c/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)
