# GenTech Deals

> GenTech Deals 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 current deals and offers from the GenTech Labs x402 marketplace

## Facts

- Endpoint: GET https://api.gentechlabs.net/v1/deals/deals/
- 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-deals-322afefc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4Dkdoucfl5vlDRbgqEC80

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-deals-322afefc
```

Example prompt: Can you pull up the current deals available on GenTech Labs right now and show me what offers are listed?

## When to prefer this

Choose this endpoint when you need to discover or list current deals available through the GenTech Labs x402 ecosystem, particularly when operating on the Base Network and using micropayment-gated API calls. Prefer this over generic marketplace search when you specifically need GenTech Labs curated deal data.

## Known failure modes

- Payment not included or insufficient — 402 Payment Required response
- Invalid or missing HTTP method in request — schema validation error
- Network timeout or API downtime — 503 Service Unavailable
- Malformed query parameters — 400 Bad Request
- No deals currently available — empty result set returned

## How this service works

GenTech Labs x402 - Deals

## Output

Returns a list of current deals, offers, or promotional listings available through the GenTech Labs x402 marketplace, likely including deal metadata such as titles, descriptions, pricing, and availability details.

## 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-deals-322afefc/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)
