# GenTech Agent Research

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

Performs AI-driven research queries via the GenTech Labs x402 pay-per-call agent endpoint

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/agent/research
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-agent-research-b9e21662
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_QyxG14Fs1apxRpH-HWeHo

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-agent-research-b9e21662
```

Example prompt: Can you use the GenTech research agent to look up current information on this topic and give me back a detailed summary?

## When to prefer this

Choose this endpoint when you need AI-agent-powered research within the GenTech Labs ecosystem, especially for topics related to blockchain, DeFi, token security, or Web3 market data. Prefer it when you want a pay-per-call model with x402 micropayments on Base Network rather than a subscription-based research service.

## Known failure modes

- Missing required 'input' object returns 400 validation error
- Payment not processed (x402 payment required) returns 402 Payment Required
- Unsupported HTTP method (only GET, HEAD, DELETE allowed) returns 405
- Query topic not recognized or no results found returns empty or error response
- Rate limiting or quota exceeded returns 429

## How this service works

GenTech Labs x402 - Agent

## Output

Returns AI-generated research output from the GenTech Labs agent, likely including structured findings, summaries, or analyzed data relevant to the query submitted via 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-agent-research-b9e21662/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)
