# three.ws Vanity Solana Address Generator

> three.ws Vanity Solana Address Generator is a paid API for AI agents from three.ws, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Generates a vanity Solana wallet address matching a custom prefix and/or suffix pattern, returning the keypair or BIP-39 mnemonic

## Facts

- Endpoint: GET https://three.ws/api/x402/vanity
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/three-ws-vanity-solana-address-generator-1c50b70c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_AE3vJosnV64BV3lefYiZV

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 three-ws-vanity-solana-address-generator-1c50b70c
```

Example prompt: Generate a vanity Solana wallet address that starts with 'Sol' using the keypair format — give me the secret key and the explorer link.

## When to prefer this

Use this endpoint when you need a human-memorable or branded Solana wallet address with a specific prefix or suffix, and want it delivered as a ready-to-use keypair or importable mnemonic in a single API call with optional client-side key sealing for security.

## Known failure modes

- Pattern too long (prefix+suffix exceeds 3 chars) — returns validation error
- Invalid Base58 characters in prefix/suffix (e.g. 0, O, I, l) — returns error
- Payment not included or insufficient — returns HTTP 402
- Timeout if vanity search takes too long for very specific patterns
- Invalid sealTo key format — returns error

## How this service works

Make a 3D AI agent from a selfie in 60 seconds. Drop one HTML tag to embed it on any website. Agents think on IBM watsonx.ai (Granite); optionally charge per chat with built-in micropayments.

## Output

Returns a JSON object containing the generated vanity Solana address, the raw Ed25519 secret key (as base58 and byte array) or BIP-39 mnemonic, the number of attempts taken, duration in milliseconds, network name, explorer URL, and optionally a sealed encrypted secret if sealTo was provided.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "format": "keypair",
  "prefix": "So",
  "suffix": null,
  "address": "SoEXAMPLEdoNotUse1111111111111111111111111111",
  "network": "solana",
  "attempts": 160000,
  "mnemonic": null,
  "secretKey": [
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0,
   0
  ],
  "wordCount": null,
  "durationMs": 6030,
  "ignoreCase": false,
  "explorerUrl": "https://solscan.io/account/SoEXAMPLEdoNotUse1111111111111111111111111111",
  "derivationPath": null,
  "secretKeyBase58": "<example-only — the live endpoint returns the ground secret key here>",
  "expectedAttempts": 3364
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/three-ws-vanity-solana-address-generator-1c50b70c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from three.ws](https://www.zero.xyz/host/three.ws/llms.txt)
