# Wurk Solana 10 Bookmarks Quick Job

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

Creates a job to bookmark a single X (Twitter) post 10 times using 10 worker accounts, paid via x402 with USDC on Solana for ~0.25 USDC.

## Facts

- Endpoint: GET https://wurkapi.fun/solana/bookmarks/10
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/wurk-wurk-quick-jobs-19-fd1acf5f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jlvdPlQpWhnT0cmrh3dhs

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-19-fd1acf5f
```

Example prompt: Book 10 bookmarks on this tweet https://x.com/example/status/123456789 using my Solana USDC wallet — I want 10 bookmark slots at 0.025 USDC each.

## When to prefer this

Use this endpoint when you need exactly 10 bookmarks on a single X (Twitter) post and want to pay ~0.25 USDC via x402 on Solana. Prefer over larger bookmark bundles (25, 40, 80+) when budget is minimal or testing the workflow. Choose Solana-specific endpoint over Base endpoints when paying with Solana-native USDC.

## Known failure modes

- Missing url query parameter — job cannot be created without a valid X post URL
- Invalid or insufficient X-PAYMENT header — returns 402 or 401 if payment verification fails
- Payment amount mismatch — if payment doesn't cover 10 × 0.025 USDC the job is rejected
- Invalid X/Twitter URL format — malformed post URLs may be rejected
- Network congestion on Solana — payment confirmation may be delayed or fail

## How this service works

Solana 10 Bookmarks — multi-bookmark quick job for a single X (Twitter) post paid via x402 using USDC on Solana. Each bookmark slot costs 0.025 USDC; total prepaid price = slots × 0.025. You can choose between 5 and 250 bookmarks via the numeric path segment (/xbookmarks-5..250) or the ?amount= query on the dynamic endpoints (e.g., /solana/xbookmarks?amount=80&url=...). Requests without an explicit amount/winners default to 40 bookmarks (≈ 1 USDC); this descriptor currently describes 10 bookmarks for ≈ 0.25 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

On first call (no payment header): returns HTTP 402 with payment discovery schema including price (0.25 USDC), accepted payment networks, and required parameters. On second call (with X-PAYMENT header and url query param): returns a JSON object with jobId, network (solana), kind (bookmarks), and winners (10) confirming the bookmark job has been created.

## 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-19-fd1acf5f/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)
