# GenTech Providers

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

Retrieves a list of available providers registered on the GenTech Labs x402 platform

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/providers/
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gentech-providers-768a268d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zNdW4wXQfAK4U7bIq2dNt

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-providers-768a268d
```

Example prompt: Can you pull up the full list of providers available on GenTech Labs so I can see which ones I can connect to?

## When to prefer this

Use this endpoint when an agent or developer needs to discover what provider services are available within the GenTech Labs x402 ecosystem before selecting one for downstream use. Prefer this over hardcoding a provider name when the available set may change or when building dynamic routing logic for DeFi, security, or agent workflows.

## Known failure modes

- Payment not included or insufficient — returns HTTP 402 requiring USDC payment
- Unauthorized access — missing or invalid authentication headers
- Empty provider list — no providers currently registered
- Network timeout or service unavailability — 5xx error
- Invalid query parameters — 400 bad request

## How this service works

GenTech Labs x402 - Providers

## Output

Returns a list of provider entries available on the GenTech Labs x402 platform, likely including provider names, types, capabilities, and connection metadata that agents or developers can use to route requests or discover integrations.

## 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-providers-768a268d/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)
