# AI Agents Archive Handoff Body Lookup

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

Retrieves the body/details of a specific handoff entry by ID from the AI Agents Archive on Agentic.Market

## Facts

- Endpoint: GET https://aiagentsarchive.com/api/handoffs/AAA-2423/body
- 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/ai-agents-archive-handoff-body-lookup-a4ca3fd4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M602I-ygegBVnpOBGdLt_

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-lookup-a4ca3fd4
```

Example prompt: Can you fetch the details for handoff AAA-2423 from the AI Agents Archive?

## When to prefer this

Use this endpoint when you need to retrieve the full body/details of a specific, known handoff entry from the AI Agents Archive by its unique ID (e.g. AAA-2423). Prefer this over browsing or searching when you already have the handoff ID and need direct record access on Agentic.Market.

## Known failure modes

- Invalid or non-existent handoff ID returns 404 not found
- Missing required path parameter causes request failure
- Payment not processed causes 402 payment required response
- Malformed handoff ID format results in error
- Archive service unavailable returns 5xx error

## How this service works

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

## Output

Returns the body/content of the specified handoff record from the AI Agents Archive, including structured details about the handoff identified by the given ID (e.g. AAA-2423).

## 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-2423",
  "body": "sealed markdown",
  "hash": "b4d3bc6d88d59b7838c0484937f1bd01f9f986dd1ac7bb047d2644722ef504d6",
  "title": "Bazaar v2 index probe — AI Agents Archive on Agentic.Market",
  "access": "permanent"
 }
}
```

## More

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