# WURK API – Base 100 Dex Rockets

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

Creates a quick job that sends 100 rocket engagements to a specified Dexscreener page, paid via x402 micropayment using USDC on Base for 2.5 USDC.

## Facts

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

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-dex-rockets-e8334cf7
```

Example prompt: Send 100 Dex Rockets to my Dexscreener page at https://dexscreener.com/base/0xABC123 — pay the 2.5 USDC via x402 on Base and give me the job ID when it's created.

## When to prefer this

Use this endpoint when you specifically want to send exactly 100 rocket engagements to a Dexscreener token page on the Base network and want a fixed cost of 2.5 USDC. Prefer this over the dynamic /base/dex/dex-rocket endpoint when you don't need to customize the rocket count. Choose this over Solana-based dex rocket endpoints when your token is on Base.

## Known failure modes

- Missing or invalid url parameter returns a 402 discovery payload without creating a job
- Insufficient USDC balance or failed x402 payment returns payment error
- Invalid Dexscreener URL format may result in job creation failure or rejected submission
- First call without X-PAYMENT header returns 402 with payment schema, not an error per se but no job is created
- Network congestion on Base may delay payment confirmation

## How this service works

Base 100 Dex Rockets — Dex Rockets quick job for a single Dexscreener page paid via x402 using USDC on Base. 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 JSON object with ok (boolean confirming success), jobId (internal WURK job identifier), network ('base'), kind ('dex-rocket-100'), winners (100), and paid (boolean alias for ok). The jobId can be used with other WURK job APIs to track progress.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "url"
 ],
 "properties": {
  "url": {
   "type": "string",
   "description": "Link to the Dexscreener page where users should send a rocket."
  }
 }
}
```

## 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., dex-rocket-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)."
 },
 "winners": {
  "type": "number",
  "description": "Total rocket slots for this job (here: 100)."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/wurk-api-base-100-dex-rockets-e8334cf7/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)
