Back to explore
Partner API · v1

Launch Wikt tokens from your terminal.

A secure REST pipeline for deployment tools, trading terminals, and launch interfaces. Partners prepare the launch; the user still approves its exact terms and funds its isolated vault.

1. Prepare

Submit validated Pons and Wikt parameters with an idempotency key.

2. Authorize

Show the returned message to the owner wallet for signature.

3. Fund & confirm

Send exact funding amounts, submit their hashes, then poll until active.

Prepare a launch

Server-to-server request

POST /api/v1/integrations/launches/prepare
Authorization: Bearer wikt_partner_…
Idempotency-Key: your-unique-launch-id
Content-Type: application/json

{
  "owner": "0xUSER_WALLET",
  "name": "Example Coin",
  "symbol": "EXAMPLE",
  "description": "Token description",
  "intervalSeconds": 300,
  "maximumRoundTripLossBps": 400,
  "pairSymbol": "ETH",
  "developerBuyAmount": "0",
  "creatorTaxBps": 100,
  "feeMode": "round_trip",
  "wiktSellBps": 10000,
  "snipeTaxExemptions": [],
  "socials": { "twitter": "example" }
}

The server calculates the authoritative native and paired-token funding requirements. Never calculate or reduce those values client-side.

Endpoint reference
GET /api/v1/integrations/capabilities

Read chain, modes, and API requirements. No key required.

POST /api/v1/integrations/launches/prepare

Create an authorization challenge and receive exact funding instructions.

POST /api/v1/integrations/launches/:id/confirm-funding

Submit the owner signature and native/ERC-20 funding transaction hashes.

GET /api/v1/integrations/launches/:id

Poll deployment status and receive the token address when active.

Partner access is allowlisted during rollout. Contact the Wikt team for a dedicated API key and test against a low-value launch before production traffic.