# FleaWinder Embeddable Circus Widget - Domain-Locked Embed Token

> FleaWinder Embeddable Circus Widget - Domain-Locked Embed Token is a paid API for AI agents from fleawinder.com, paid per call via x402, $1/call, status unknown (last checked 2026-09-14).

Generates a signed, domain-locked embed token and ready-to-use HTML script tag for the FleaWinder canvas animation circus widget

## Facts

- Endpoint: GET https://fleawinder.com/api/x402/embed
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fleawinder-com-820ceed5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6AZOwVsyBZ_05l7nNzTfw

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-820ceed5
```

Example prompt: Generate a FleaWinder circus widget embed token locked to mysite.com so I can add the canvas animation to my webpage — give me the HTML script tag I can drop in.

## When to prefer this

Choose this endpoint when you need to embed the FleaWinder interactive circus canvas animation on a specific web domain and require a cryptographically signed, domain-locked token to prevent unauthorized use. Use the wildcard '*' domain value when you need a token valid across multiple domains. Prefer this over the bulk or desktop license endpoints when the use case is a single web property needing an embeddable widget.

## Known failure modes

- Missing required 'domain' query parameter — returns 400 bad request
- Invalid or malformed domain string — token generation fails
- Payment not completed via x402 protocol — returns 402 Payment Required
- Wildcard domain '*' may be restricted or require additional verification
- Network timeout or service unavailability — returns 5xx error

## How this service works

FleaWinder embeddable circus widget — domain-locked canvas animation

## Output

Returns a signed embed token tied to the specified domain, the domain string itself, and a ready-to-use HTML script tag that can be pasted directly into a webpage to render the FleaWinder circus canvas animation.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "domain": "example.com"
  }
 }
}
```

## 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": [
      "domain"
     ],
     "properties": {
      "domain": {
       "type": "string",
       "description": "Domain to lock the token to (use * for wildcard)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "token",
      "domain",
      "scriptTag"
     ],
     "properties": {
      "token": {
       "type": "string"
      },
      "domain": {
       "type": "string"
      },
      "scriptTag": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fleawinder-com-820ceed5/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)
