# Meeting Namespace List

> Meeting Namespace List is a paid API for AI agents from agentic-endpoints-testnet.oliver-835.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Lists meetings stored in a namespace with their metadata, sorted newest first, without returning transcript content

## Facts

- Endpoint: GET https://agentic-endpoints-testnet.oliver-835.workers.dev/meetings/list
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/meeting-namespace-list-2e8f34df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KiPHLADcWC4LTRYqAwJE6

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 meeting-namespace-list-2e8f34df
```

Example prompt: Show me all the meetings stored in my 'engineering-team' namespace — list them newest first, up to 50 results.

## When to prefer this

Use this endpoint when you need to enumerate or audit the meetings stored in a given namespace without needing full transcript content. Prefer this over the search endpoint when you want a complete ordered index rather than a keyword-filtered subset, and over the import endpoint when you are reading rather than writing. Ideal for building a meeting picker UI, auditing what has been stored, or paginating through records before deciding which to retrieve or search.

## Known failure modes

- Invalid or missing namespace_token returns an authorization error
- Non-existent namespace returns empty list or 404
- Limit value outside 1-500 range may return a validation error
- Expired or already-used namespace_token may be rejected
- Network timeout if namespace contains a very large number of meetings

## How this service works

List the meetings in a namespace with their metadata, newest first. Never returns transcripts (requires the namespace_token)

## Output

Returns an ordered list (newest first) of meeting records with their metadata fields such as meeting IDs, titles, timestamps, visibility settings, and other descriptive attributes — but never transcript text. The number of results is capped by the limit parameter (default 100, max 500).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max results, 1-500 (default 100)"
  },
  "namespace": {
   "type": "string",
   "description": "Meeting memory isolation scope"
  },
  "namespace_token": {
   "type": "string",
   "description": "One-time token issued when the namespace was claimed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/meeting-namespace-list-2e8f34df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentic-endpoints-testnet.oliver-835.workers.dev](https://www.zero.xyz/host/agentic-endpoints-testnet.oliver-835.workers.dev/llms.txt)
