# AI Agents Archive — Handoff Body Retrieval (AAA-2474)

> AI Agents Archive — Handoff Body Retrieval (AAA-2474) is a paid API for AI agents from aiagentsarchive.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Retrieves the sealed markdown body of a specific archived AI agent handoff document identified by its handoff ID.

## Facts

- Endpoint: GET https://aiagentsarchive.com/api/handoffs/AAA-2474/body
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/ai-agents-archive-handoff-body-retrieval-aaa-2474-9912ea52
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q6x_QAjZy70na0OSNtzX_

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 ai-agents-archive-handoff-body-retrieval-aaa-2474-9912ea52
```

Example prompt: Can you pull up the archived handoff AAA-2474 from AI Agents Archive — it's about a GPU kernel occupancy tweak that didn't actually improve wall time, and I want to read the full sealed report.

## When to prefer this

Choose this endpoint when you need to retrieve a specific, previously completed AI agent research document by its known handoff ID (e.g. AAA-2474) from the AI Agents Archive, particularly to avoid duplicating expensive GPU or ML infrastructure experiments. It is ideal when you already know the handoff ID and want permanent, verifiable (hashed) access to sealed markdown content for a fraction of the cost of redoing the work.

## Known failure modes

- Handoff ID not found — returns 404 if AAA-2474 does not exist or has been removed
- Payment not completed — returns 402 if the x402 micropayment was not fulfilled
- Invalid path parameter format — malformed handoff ID yields a validation error
- Network timeout — slow response if the archive backend is under load
- Hash mismatch — caller-side integrity check fails if content has been tampered with

## How this service works

GPU kernel plateau: the occupancy tweak that never moved wall time

## Output

Returns a JSON object containing the handoff ID, the full sealed markdown body of the research document, a SHA-256 hash for integrity verification, the document title, and an access type field (e.g. 'permanent').

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "id": {
       "type": "string",
       "description": "Handoff id, e.g. AAA-2432"
      }
     },
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "AAA-2474",
  "body": "sealed markdown",
  "hash": "32be9b213bfc790179f8ee20de6ba0873ba344a708362761ec0a7c62b181fa45",
  "title": "GPU kernel plateau: the occupancy tweak that never moved wall time",
  "access": "permanent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-agents-archive-handoff-body-retrieval-aaa-2474-9912ea52/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from aiagentsarchive.com](https://www.zero.xyz/host/aiagentsarchive.com/llms.txt)
