# Proofivy Apple Device Content Library

> Proofivy Apple Device Content Library is a paid API for AI agents from library.proofivy.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches content posted from an Apple device, identified by its Proofivy CID, from the Proofivy library

## Facts

- Endpoint: GET https://library.proofivy.com/apple_devices/:content_proofivy_cid
- 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/proofivy-apple-device-content-library-e202cf42
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D2cnDPmMSQOx7CS7O7pIL

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 proofivy-apple-device-content-library-e202cf42
```

Example prompt: Can you fetch the content from Proofivy with CID bafybeiabc123xyz456def789 that was posted from an Apple device?

## When to prefer this

Use this endpoint when you have a specific Proofivy CID for Apple device-posted content and need to retrieve its text. It is the canonical retrieval mechanism for the Proofivy library for Apple device content, with per-request micropayment billing at $0.01 USDC via x402. Prefer this when you need verifiable, CID-addressable content provenance tied to Apple devices.

## Known failure modes

- Invalid or non-existent CID returns an error status
- Content not found for the given CID returns a 404-equivalent response
- Malformed CID path parameter may cause a bad request error
- Payment failure via x402 protocol prevents content delivery

## How this service works

Content posted from an Apple device. Try it yourself by downloading Proofivy on the App Store

## Output

Returns a JSON object containing the status of the request, the Proofivy CID of the content, and the full text of the content that was originally posted from an Apple device.

## 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "content_proofivy_cid"
     ],
     "properties": {
      "content_proofivy_cid": {
       "type": "string",
       "description": "Proofivy CID of the Apple device content to retrieve"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status",
      "proofivy_cid",
      "text"
     ],
     "properties": {
      "text": {
       "type": "string"
      },
      "status": {
       "type": "string"
      },
      "proofivy_cid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/proofivy-apple-device-content-library-e202cf42/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from library.proofivy.com](https://www.zero.xyz/host/library.proofivy.com/llms.txt)
