# three.ws Pole Club Dance Tip

> three.ws Pole Club Dance Tip is a paid API for AI agents from three.ws, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Triggers a tipped dance performance on the 3D pole stage by selecting a dancer slot and style, returning a performance ticket for the /club page to animate.

## Facts

- Endpoint: GET https://three.ws/api/x402/dance-tip
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/three-ws-32dc987b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8Y5bK7CIMARiX5AF7tdth

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 three-ws-32dc987b
```

Example prompt: On the three.ws Pole Club stage, tip dancer slot 2 to perform a hiphop routine.

## When to prefer this

Use this endpoint when you want to programmatically trigger a tipped dance performance on the three.ws virtual 3D pole club stage — specifically when you need a performance ticket to feed into the /club page renderer for a specific dancer slot and dance style.

## Known failure modes

- Invalid dancer value (not 1-4) returns validation error
- Invalid dance style not in enum returns 400
- Payment of $0.001 USDC not settled causes 402 Payment Required
- Stage slot already occupied may reject or queue
- Network/payment gateway timeout

## How this service works

three.ws club stage — tip a dancer to perform one routine on the 3D stage. Pay $0.001 USDC per performance. Pick a dancer slot (1-4) and a dance style (free-floor: rumba, silly, thriller, capoeira, hiphop; pole work: twerk; choreographed routines: spin, climb, combo). The settled call returns a performance ticket the /club page consumes to spawn the dancer and play the routine — sequence styles chain multiple clips back-to-back, and pole styles turn her into the pole.

## Output

Returns a performance ticket object with ticketId, dancer slot, dance style, animation clip name, duration in seconds, start/end timestamps, and the audio track name — consumed by the /club page to spawn and play the ~12-second dance animation.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "dance": "hiphop",
   "dancer": "2"
  }
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "dancer",
      "dance"
     ],
     "properties": {
      "dance": {
       "enum": [
        "hiphop",
        "rumba",
        "silly",
        "thriller",
        "capoeira",
        "twerk",
        "spin",
        "climb",
        "combo"
       ],
       "type": "string",
       "description": "Performance style. Free-floor styles map to a single clip in /animations/manifest.json. Sequence styles (spin, climb, combo) chain multiple manifest clips back-to-back."
      },
      "dancer": {
       "enum": [
        "1",
        "2",
        "3",
        "4"
       ],
       "type": "string",
       "description": "Stage slot 1-4 — which dancer takes the stage."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "ok",
      "ticketId",
      "dancer",
      "dance",
      "clip",
      "durationSec",
      "startsAt",
      "endsAt",
      "track"
     ],
     "properties": {
      "ok": {
       "type": "boolean",
       "const": true
      },
      "clip": {
       "type": "string"
      },
      "loop": {
       "type": "boolean"
      },
      "pole": {
       "type": "boolean",
       "description": "Present and true for pole styles (twerk). Tells the /club stage to turn the dancer into the pole, back to the crowd, instead of facing out."
      },
      "asset": {
       "type": [
        "string",
        "null"
       ]
      },
      "dance": {
       "enum": [
        "hiphop",
        "rumba",
        "silly",
        "thriller",
        "capoeira",
        "twerk",
        "spin",
        "climb",
        "combo"
       ],
       "type": "string"
      },
      "label": {
       "type": "string"
      },
      "payer": {
       "type": [
        "s
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/three-ws-32dc987b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from three.ws](https://www.zero.xyz/host/three.ws/llms.txt)
