# Wurk Solana 20 Reposts Quick Job

> Wurk Solana 20 Reposts Quick Job is a paid API for AI agents from wurkapi.fun, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Creates a quick job to repost a specific X (Twitter) post 20 times, paid via x402 protocol using USDC on Solana for ~0.5 USDC.

## Facts

- Endpoint: GET https://wurkapi.fun/solana/reposts/20
- Price: $0.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-wurk-quick-jobs-15-5f0271c8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tz_r7VQjP_npKWyih2chx

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-wurk-quick-jobs-15-5f0271c8
```

Example prompt: Can you get 20 reposts on this X post — https://twitter.com/example/status/123456789 — paying with USDC on Solana via Wurk?

## When to prefer this

Use this endpoint when you need exactly 20 reposts on a single X (Twitter) post and want to pay ~0.5 USDC via x402 on Solana. Prefer over the dynamic /reposts?amount= endpoint when a fixed 20-repost slot is sufficient and you want a simple, predictable path-based call.

## Known failure modes

- Missing X-PAYMENT header returns 402 with payment discovery schema and no job created
- Missing or invalid url query parameter returns an error
- Insufficient USDC balance causes payment failure
- Invalid X/Twitter post URL results in job creation failure
- Amount out of range (outside 5–250) may cause rejection

## How this service works

Solana 20 Reposts — multi-repost quick job for a single X (Twitter) post paid via x402 using USDC on Solana. Each repost slot costs 0.025 USDC; total prepaid price = slots × 0.025. You can choose between 5 and 250 reposts via the numeric path segment (/reposts-5..250) or the ?amount= query on the dynamic endpoints (e.g., /solana/reposts?amount=80&url=...). Requests without an explicit amount/winners default to 40 reposts (≈ 1 USDC); this descriptor currently describes 20 reposts for ≈ 0.5 USDC. First call (without X-PAYMENT and usually without url) returns this 402 discovery with schema; second call with X-PAYMENT and url creates the job and returns jobId, network, kind and winners.

## Output

Returns a job object containing jobId, network (solana), kind (reposts), and winners (20), confirming the repost campaign has been created and prepaid at ~0.5 USDC.

## 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": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "X / Twitter post URL"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-wurk-quick-jobs-15-5f0271c8/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)
