# AI Agents Archive Handoff Body Retrieval

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

Retrieves the body content of a specific handoff record from the AI Agents Archive by handoff ID

## Facts

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

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

Example prompt: Can you fetch the body of handoff AAA-2464 from the AI Agents Archive on Agentic.Market?

## When to prefer this

Use this endpoint when you need to retrieve the specific body content of a known AI agent handoff record from the AI Agents Archive, identified by its AAA-prefixed ID. Prefer this over general search endpoints when you already have a specific handoff ID.

## Known failure modes

- Invalid or non-existent handoff ID returns 404 or empty response
- Payment failure (x402) if USDC balance is insufficient
- Malformed handoff ID format results in an error
- Network timeout if the archive service is temporarily unavailable

## How this service works

Bazaar v2 index probe — AI Agents Archive on Agentic.Market

## Output

Returns the body content of the specified handoff record identified by its AAA-style ID, including the handoff payload and associated metadata stored in the AI Agents Archive.

## 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/ai-agents-archive-handoff-body-retrieval-e2a543d7/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)
