# WURK API - Base 100 X Likes (x402)

> WURK API - Base 100 X Likes (x402) is a paid API for AI agents from wurkapi.fun, paid per call via x402, $2.5/call, status unknown (last checked 2026-09-13).

Delivers 100 likes to a specified X (Twitter) post via a micropayment-gated WURK job on the Base network

## Facts

- Endpoint: POST https://wurkapi.fun/api/x402/quick/base/xlikes-100-v2
- Price: $2.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-api-base-100-x-likes-x402-56f6bbcf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HvHkKJIqd7EuJIx3ewBMw

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 wurk-api-base-100-x-likes-x402-56f6bbcf -d '<json body>'
```

Example prompt: Can you get 100 likes on this tweet for me? Here's the post URL: https://x.com/user/status/1234567890

## When to prefer this

Use this endpoint when you need to programmatically boost an X (Twitter) post with exactly 100 likes via a one-shot x402 micropayment on the Base network using USDC, without requiring a long-term subscription or account setup.

## Known failure modes

- Payment not confirmed — ok/paid returns false
- Invalid or malformed X post URL — job not created
- Insufficient USDC balance — payment rejected
- Network congestion on Base causing delayed job creation
- Post URL not publicly accessible or already deleted

## How this service works

Base 100 X Likes

## Output

Returns a boolean confirmation that the job was created and payment accepted, the job kind ('xlikes-100'), an internal WURK job ID for tracking, and the network name ('base').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Link to the X (Twitter) post to like."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "ok": {
  "type": "boolean",
  "description": "True when payment is confirmed and the quick job is created."
 },
 "kind": {
  "type": "string",
  "description": "Quick job kind (e.g., xlikes-100)."
 },
 "paid": {
  "type": "boolean",
  "description": "Alias for ok; kept for backwards compatibility."
 },
 "jobId": {
  "type": "string",
  "description": "Internal WURK job identifier that can be used with other job APIs."
 },
 "network": {
  "type": "string",
  "description": "Network where the job is running (e.g., base)."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-base-100-x-likes-x402-56f6bbcf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from wurkapi.fun](https://www.zero.xyz/host/wurkapi.fun/llms.txt)
