# Wurk Dex Rockets 100 (Solana)

> Wurk Dex Rockets 100 (Solana) is a paid API for AI agents from wurkapi.fun, paid per call via x402, $2/call, status unknown (last checked 2026-09-15).

Creates a quick job to send 100 Dex Rockets (promotional boosts) to a single Dexscreener page, paid via x402 using USDC on Solana for approximately 2.5 USDC.

## Facts

- Endpoint: GET https://wurkapi.fun/solana/dex/100
- Price: $2/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-12-bfb35f10
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bEIH-3dDJRLP3PPCW0LsO

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-12-bfb35f10
```

Example prompt: Send 100 Dex Rockets to my Dexscreener page at https://dexscreener.com/solana/ABCXYZ123 using USDC on Solana — that should cost about 2.5 USDC.

## When to prefer this

Use this endpoint when you want exactly 100 Dex Rockets for a Dexscreener page on Solana and want a fixed-cost convenience endpoint (~2.5 USDC). Prefer sibling endpoints if you need a different rocket count (5–250 range) or want to customize via query parameters. Use this over general social media boost endpoints specifically for Dexscreener DeFi token promotion.

## Known failure modes

- Missing url query parameter — 402 discovery response returned without creating a job
- Payment not provided or invalid X-PAYMENT header — returns 402 with payment instructions
- Invalid or unreachable Dexscreener URL — job may fail to execute
- Amount out of range (below 5 or above 250) — request rejected
- Network issues or Solana congestion — job creation may time out

## How this service works

Solana 100 Dex Rockets — Dex Rockets quick job for a single Dexscreener page paid via x402 using USDC on Solana. Each rocket slot costs 0.025 USDC; total prepaid price = slots × 0.025. You can choose between 5 and 250 rockets via the numeric path segment (/dex-rocket-5..250) or the ?amount= query on the dynamic endpoints (e.g., /solana/dex-rocket?amount=80&url=...). Requests without an explicit amount/winners default to 40 rockets (≈ 1 USDC); this descriptor currently describes 100 rockets for ≈ 2.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 record containing jobId, network (solana), kind (dex-rocket), and winners (100), confirming the rocket boost job has been created for the specified Dexscreener URL.

## 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": "Dexscreener 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-12-bfb35f10/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)
