# Synapse API — ApeChain NFT Sales

> Synapse API — ApeChain NFT Sales 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-13).

Retrieves NFT sales transaction history on the ApeChain blockchain, filterable by contract address and block range.

## Facts

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

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-sales-fad1c7f7 -d '<json body>'
```

Example prompt: Pull the last 50 NFT sales on ApeChain for contract address 0xAbC123... in descending order, starting from block 1000000 to block 1050000.

## When to prefer this

Use this endpoint when you need on-chain NFT sales data specifically from the ApeChain network, especially when filtering by contract address or block range is needed. Prefer this over general NFT APIs when ApeChain-specific data is required and you want pay-per-call pricing without a subscription.

## Known failure modes

- Invalid contract address format returns an error or empty results
- fromBlock greater than toBlock causes query failure or empty response
- limit value out of acceptable range may return an error
- Non-existent contract address returns empty sales list
- Network or RPC issues may cause timeout or 5xx errors
- Payment failure via x402 prevents endpoint access

## 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

A list of NFT sale events on ApeChain matching the specified filters, including transaction details such as sale price, token IDs, buyer/seller addresses, and block numbers, ordered as specified and limited to the requested count.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "number"
  },
  "order": {
   "enum": [
    "asc",
    "desc"
   ],
   "type": "string"
  },
  "toBlock": {
   "type": "number"
  },
  "fromBlock": {
   "type": "number"
  },
  "contractAddress": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/synapse-api-apechain-nft-sales-fad1c7f7/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)
