# WURK API - Base 100 Reposts

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

Creates a paid WURK job to generate 100 reposts on a specified X (Twitter) post using Base network USDC micropayment via x402.

## Facts

- Endpoint: GET https://wurkapi.fun/api/x402/quick/base/reposts-100
- Price: $2.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-api-base-100-reposts-ceab8233
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WqgYFKNhZEpsgeJ8luMgk

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-reposts-ceab8233
```

Example prompt: Get me 100 reposts on this tweet: https://x.com/myaccount/status/1234567890 — pay with USDC on Base.

## When to prefer this

Use this endpoint when you need exactly 100 reposts on an X (Twitter) post and want to pay via USDC on the Base network using the x402 micropayment protocol. Prefer this over Solana variants when the user has Base/EVM wallet funds available.

## Known failure modes

- Missing or invalid URL parameter — job not created
- Payment not confirmed — ok/paid returns false
- Invalid X post URL format — job rejected
- Network congestion causing x402 payment delay
- Post not publicly accessible — job may fail silently

## How this service works

Base 100 Reposts

## Output

Returns a JSON object with ok/paid boolean confirming payment and job creation, a jobId for tracking, the job kind ('reposts-100'), and the network ('base') where the job is running.

## Request schema (JSON Schema)

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

## 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., reposts-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-reposts-ceab8233/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)
