# Spraay NFT Portfolio Lookup

> Spraay NFT Portfolio Lookup is a paid API for AI agents from gateway.spraay.app, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns multi-chain NFT holdings with full metadata for a given wallet address

## Facts

- Endpoint: GET https://gateway.spraay.app/api/v1/portfolio/nfts
- 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/gateway-spraay-app-33d30938
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5Yt1hbVR5FcOhkQh0IaFK

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 gateway-spraay-app-33d30938
```

Example prompt: Show me all the NFTs held by wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e across all supported chains, and include the full metadata for each NFT.

## When to prefer this

Use this endpoint when you need to enumerate all NFT holdings for a wallet address across multiple blockchains in a single call, especially when NFT metadata (images, traits, collection info) is required alongside the token list. Prefer over chain-specific NFT APIs when multi-chain aggregation is needed.

## Known failure modes

- Invalid or malformed wallet address returns an error or empty result
- Unsupported network string returns empty NFT list or error
- Rate limiting or payment failure returns 402 or 429 status
- Large portfolios may require multiple paginated calls using pageKey
- Address with no NFTs returns empty array and total_count of 0

## How this service works

Multi-chain NFT holdings with metadata.

## Output

An array of NFT objects with associated metadata (name, image, traits, contract, token ID, etc.), the queried wallet address, and a total count of NFTs held. Supports pagination via pageKey for large portfolios.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
   "pageSize": 10,
   "withMetadata": true
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string"
      },
      "pageKey": {
       "type": "string"
      },
      "networks": {
       "type": "string"
      },
      "pageSize": {
       "type": "number"
      },
      "withMetadata": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "nfts": {
       "type": "array"
      },
      "address": {
       "type": "string"
      },
      "total_count": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gateway-spraay-app-33d30938/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gateway.spraay.app](https://www.zero.xyz/host/gateway.spraay.app/llms.txt)
