# GenTech NFT Search

> GenTech NFT Search is a paid API for AI agents from api.gentechlabs.net, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-18).

Search and retrieve NFT data including collections, tokens, and metadata via a pay-per-call API

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/nft/search/
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-nft-search-4bfb3ec0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rDjPBhaSEOrhbOo1U18PH

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 gentech-nft-search-4bfb3ec0
```

Example prompt: Search for NFTs in the Bored Ape Yacht Club collection and show me the metadata and current ownership details for the top results.

## When to prefer this

Choose this endpoint when you need to search or look up NFT data on the Base Network using a simple pay-per-call model without setting up a subscription. Particularly useful for agents that need on-demand NFT metadata retrieval, portfolio lookups, or collection discovery in a cost-effective micro-payment model via x402.

## Known failure modes

- Missing required query parameters returns 400 Bad Request
- Invalid wallet address format causes lookup failure
- NFT collection not indexed returns empty results
- Rate limiting or payment failure returns 402 Payment Required
- Network or upstream blockchain node errors return 500 Internal Server Error

## How this service works

GenTech Labs x402 - Nft

## Output

Returns NFT search results including token metadata, collection details, trait information, ownership data, and potentially pricing or listing details for matching NFTs based on the search query parameters.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": true
    },
    "pathParams": {
     "type": "object",
     "additionalProperties": true
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   },
   "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/gentech-nft-search-4bfb3ec0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gentechlabs.net](https://www.zero.xyz/host/api.gentechlabs.net/llms.txt)
