# GenTech Agents Search

> GenTech Agents 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 for AI agents available on the GenTech Labs platform via the x402 pay-per-call protocol

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/agents/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-agents-search-54417cfc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4yB81k-KzuIOjh-7uTR6c

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-agents-search-54417cfc
```

Example prompt: Search GenTech Labs for available AI agents that specialize in token security or wallet analysis — show me what agents are listed in their registry.

## When to prefer this

Choose this endpoint when you need to discover and browse AI agents available on the GenTech Labs platform, especially when building agent orchestration pipelines that need to find the right specialist agent (e.g. security, DeFi, market analysis) before delegating tasks. It is ideal for agent-to-agent discovery workflows operating over the x402 micropayment protocol on Base Network.

## Known failure modes

- Invalid or missing required 'input' object returns a 400 validation error
- Unsupported HTTP method (e.g. POST or PUT) returns a validation error since only GET, HEAD, DELETE are allowed
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Malformed query parameters may return empty results or an error
- Service unavailable returns a 503 or 5xx error

## How this service works

GenTech Labs x402 - Agents

## Output

Returns a list of AI agents available on the GenTech Labs platform, including agent names, types, capabilities, and relevant metadata to help select the right agent for a task.

## 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-agents-search-54417cfc/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)
