# Synapse API — ApeChain NFT Metadata Lookup

> Synapse API — ApeChain NFT Metadata Lookup is a paid API for AI agents from synapse-api-brown.vercel.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Fetches NFT metadata for a given token on the ApeChain blockchain network by contract address and token ID.

## Facts

- Endpoint: POST https://synapse-api-brown.vercel.app/api/apechain/nft/metadata
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/synapse-api-apechain-nft-metadata-lookup-a8013b0a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9SLR6CEbSlL25p8LWWi3r

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 synapse-api-apechain-nft-metadata-lookup-a8013b0a -d '<json body>'
```

Example prompt: Can you look up the metadata for NFT token ID 1234 from the ApeChain contract at 0xAbCd1234...? I want to see its name, image, and traits.

## When to prefer this

Use this endpoint when you specifically need NFT metadata from the ApeChain (APE) blockchain network. Prefer it over generic multi-chain NFT APIs when you know the asset is on ApeChain and want a pay-per-call model without subscription overhead.

## Known failure modes

- Invalid or non-existent contract address returns an error or empty response
- Token ID not minted or out of range returns a not-found error
- ApeChain RPC node unavailability causes timeout or 5xx error
- Malformed input (non-string tokenId or contractAddress) may cause a validation error
- Payment failure via x402 prevents the call from proceeding

## How this service works

High-speed API suite for AI processing, web scraping, and smart data utilities across 57+ blockchain networks. Pay-per-call via x402.

## Output

Returns NFT metadata for the specified token on ApeChain, typically including the token name, description, image URL, and attributes/traits array as defined in the token's metadata standard.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tokenId": {
   "type": "string"
  },
  "contractAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synapse-api-apechain-nft-metadata-lookup-a8013b0a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from synapse-api-brown.vercel.app](https://www.zero.xyz/host/synapse-api-brown.vercel.app/llms.txt)
