# 402.com.tr Wallet NFT Portfolio Lookup

> 402.com.tr Wallet NFT Portfolio Lookup is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns spam-filtered NFT collections held by a Base wallet address, including collection name, count, and floor value, via Covalent.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/wallet-nfts
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-wallet-nft-portfolio-lookup-57872792
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9QpVESvK6kY6Q5g8txU8J

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 402-com-tr-wallet-nft-portfolio-lookup-57872792
```

Example prompt: Can you show me the NFT collections held by Base wallet 0x742d35Cc6634C0532925a3b844Bc454e4438f44e — I want to see the names, how many of each, and the floor prices, with spam filtered out?

## When to prefer this

Choose this endpoint when you need a clean, spam-filtered view of NFT holdings for a Base wallet, especially when floor value context is needed alongside collection names and counts. Prefer it over raw blockchain queries or non-spam-filtered NFT APIs when building wallet profiles or portfolio summaries on Base.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Non-Base (e.g. Ethereum mainnet) addresses may return empty or incorrect results
- Wallet with no NFTs returns an empty collection list
- Covalent API downtime may cause upstream failures
- Rate limiting or payment failure ($0.01 USDC) may block the request

## How this service works

Lists the NFT collections a Base wallet holds — name, count and floor value — spam-filtered, via Covalent. For agents profiling a wallet's NFT exposure.

## Output

A spam-filtered list of NFT collections held by the specified Base wallet, each with collection name, token count, and floor value in USD — suitable for profiling a wallet's NFT exposure.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-wallet-nft-portfolio-lookup-57872792/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
