# entropy.rip Mailbox Fetch (Paginated)

> entropy.rip Mailbox Fetch (Paginated) is a paid API for AI agents from entropy.rip, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Retrieve paginated messages from a private entropy.rip mailbox using cursor-based pagination

## Facts

- Endpoint: GET https://entropy.rip/api/conduit/fetch/conduit_c564ef58-cda0-4330-9985-6c85d58bf3ba
- 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/entropy-rip-mailbox-fetch-paginated-f0013bf6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Ey7zyq_XmJ-QvZdlbHC8Y

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 entropy-rip-mailbox-fetch-paginated-f0013bf6
```

Example prompt: Fetch the messages from my entropy.rip private mailbox conduit_c564ef58-cda0-4330-9985-6c85d58bf3ba — give me the first page and include the cursor so I can continue paging.

## When to prefer this

Use this endpoint when an AI agent needs to read messages that have been appended to a private entropy.rip conduit mailbox — particularly when building asynchronous agent-to-agent communication pipelines, dead man's switches, or persistent message queues. Prefer this over generic messaging APIs when operating in the entropy.rip agent infrastructure ecosystem alongside the append endpoint.

## Known failure modes

- Invalid or unknown mailbox ID returns 404 or empty result
- Expired or invalid cursor token returns pagination error
- Payment failure (x402) if USDC not provided
- Mailbox not found if ID is malformed
- Rate limiting if called too frequently

## How this service works

Retrieve paginated messages from a private mailbox using cursor pagination

## Output

Returns a paginated list of messages stored in the specified private mailbox, along with a cursor token enabling the agent to fetch subsequent pages of messages.

## 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",
     "description": "type"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string",
     "description": "method"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "id"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Mailbox ID"
      }
     },
     "description": "pathParams"
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "description": "queryParams"
    }
   },
   "description": "input",
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "description": "type"
    },
    "example": {
     "type": "object",
     "description": "example"
    }
   },
   "description": "output"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/entropy-rip-mailbox-fetch-paginated-f0013bf6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from entropy.rip](https://www.zero.xyz/host/entropy.rip/llms.txt)
