# FleaWinder Bulk License Keys

> FleaWinder Bulk License Keys is a paid API for AI agents from fleawinder.com, paid per call via x402, $15/call, status down (last checked 2026-09-15).

Purchases a batch of FleaWinder seat license keys (5–500 seats) at $3/seat USDC, returning email/key pairs for each seat under a company domain.

## Facts

- Endpoint: GET https://fleawinder.com/api/x402/license/bulk
- Price: $15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fleawinder-com-868d5502
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VpTwwDF9RF-9EGu74VaHI

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 fleawinder-com-868d5502
```

Example prompt: Buy me 20 FleaWinder bulk seat licenses for the domain acmecorp.com — the admin contact is licenses@acmecorp.com — and give me the email/key pairs for each seat.

## When to prefer this

Use this endpoint when you need to provision multiple FleaWinder seat licenses at once for a team or organization (5–500 seats), rather than purchasing individual desktop license keys one at a time. Ideal for bulk team rollouts under a single company domain.

## Known failure modes

- count below minimum (5) or above maximum (500) — invalid parameter error
- missing required query params (count, domain, or email) — 400 bad request
- payment failure or insufficient USDC balance — 402 payment required
- invalid email format — validation error
- domain format invalid — 400 error
- service unavailable — 5xx response

## How this service works

FleaWinder bulk license keys — $3/seat USDC (min 5, max 500 seats)

## Output

Returns a JSON object containing an array of {email, key} pairs (one per seat), the total seat count, the company domain, and the admin contact email. Each entry can be distributed to an individual user for activation.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "count",
      "domain",
      "email"
     ],
     "properties": {
      "count": {
       "type": "string",
       "description": "Number of seats (5–500)"
      },
      "email": {
       "type": "string",
       "description": "Admin contact email"
      },
      "domain": {
       "type": "string",
       "description": "Company domain for seat emails"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "keys",
      "count",
      "domain"
     ],
     "properties": {
      "keys": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "key": {
          "type": "string"
         },
         "email": {
          "type": "string"
         }
        }
       },
       "description": "Array of {email, key} pairs for each seat"
      },
      "count": {
       "type": "number"
      },
      "domain": {
       "type": "string"
      },
      "contact": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fleawinder-com-868d5502/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fleawinder.com](https://www.zero.xyz/host/fleawinder.com/llms.txt)
