# Phantom API — ApeChain NFT by Owner

> Phantom API — ApeChain NFT by Owner is a paid API for AI agents from phantom-api-omega.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches all NFTs owned by a given wallet address on the ApeChain network, with pagination support.

## Facts

- Endpoint: POST https://phantom-api-omega.vercel.app/api/apechain/nft/by-owner
- 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/phantom-api-apechain-nft-by-owner-5846cce9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LA011BdXWo5piWexMNAe2

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 phantom-api-apechain-nft-by-owner-5846cce9 -d '<json body>'
```

Example prompt: Can you fetch all the NFTs owned by the wallet 0xABC123... on ApeChain and show me the first 20?

## When to prefer this

Use this endpoint when you specifically need to enumerate NFT holdings for a wallet address on the ApeChain network. Prefer this over generic multi-chain NFT APIs when ApeChain is the target and you want pay-per-call pricing without a subscription. Well-suited for lightweight, agent-driven queries where you only pay $0.01 USDC per lookup.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Missing required 'owner' field causes a bad request error
- Invalid pageKey results in no results or an error
- Rate limits or payment issues (x402) may block the call
- ApeChain node unavailability can cause timeouts or 5xx errors

## How this service works

Lightning-fast access to blockchain data, smart contract insights, and Web3 infrastructure across 57+ networks. Pay-per-call via x402.

## Output

Returns a list of NFTs owned by the specified wallet on ApeChain, including token metadata and a pagination key for retrieving subsequent pages if there are more results.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number"
  },
  "owner": {
   "type": "string"
  },
  "pageKey": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/phantom-api-apechain-nft-by-owner-5846cce9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from phantom-api-omega.vercel.app](https://www.zero.xyz/host/phantom-api-omega.vercel.app/llms.txt)
