Standard Deployment

Deploy a new token with Clanker's standard configuration.

POST https://www.clanker.world/api/tokens/deploy

Headers:

x-api-key: your_api_key
Content-Type: application/json

Request Body Parameters:

Parameter
Type
Description

name

string

The name of your token

symbol

string

Token symbol (usually 3-5 characters)

image

string

URL to the token's image

requestorAddress

string

Ethereum address where creator rewards will be sent

requestKey

string

Generate a 32-character identifier for idempotency

Example Request:

curl -X POST 'https://www.clanker.world/api/tokens/deploy' \
-H 'Content-Type: application/json' \
-H 'x-api-key: your_api_key' \
-d '{
  "name": "My Token",
  "symbol": "MTK",
  "image": "https://example.com/token-image.png",
  "requestorAddress": "0x1234567890abcdef1234567890abcdef12345678",
  "requestKey": "unique_request_identifier"
}'

Notes

Request Key Generation

  • Generate a unique 32-character string for each request

  • This is used as an idempotency key to prevent duplicate token deployments

Creator Rewards

  • 40% of creator rewards will accrue to the requestorAddress

  • Ensure the provided address is correct and accessible

Last updated