# DexL Create Token

> DexL Create Token is a paid API for AI agents from api.dexl.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Builds and submits a blockchain transaction to create a new memecoin token on DexL's multichain SocialFi platform (Arbitrum, Robinhood Chain, or Base)

## Facts

- Endpoint: POST https://api.dexl.io/api/build-tx/create-token
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dexl-create-token-d88e5041
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c1wlM3b8MPedyONe7ai4t

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 dexl-create-token-d88e5041 -d '<json body>'
```

Example prompt: Create a new memecoin on DexL for me — deploy it on Base using a bonding curve, name it 'MoonCat', ticker MCAT, and build the creation transaction so I can sign and broadcast it.

## When to prefer this

Use this endpoint when an agent needs to programmatically create and launch a new token on DexL's SocialFi platform across Arbitrum, Base, or Robinhood Chain. Prefer this over generic token deployment APIs when you want integrated bonding curves, SocialFi features, and multichain support in a single call at low per-call cost ($0.01 USDC).

## Known failure modes

- Missing or invalid body parameters — token name, symbol, or chain not provided
- Network/chain not supported — only Arbitrum, Robinhood Chain, and Base are valid targets
- Payment failure — $0.01 USDC x402 payment not included or rejected
- Malformed bodyType — must be json, form-data, or text
- Duplicate token symbol already deployed on the target chain
- RPC or blockchain node unavailability causing transaction build failure

## How this service works

Builds an unsigned transaction to launch a new token on the DexL launchpad (you sign it with your own wallet)

## Output

Returns a built blockchain transaction payload (unsigned or pre-signed) that the caller can sign and broadcast to create the new token on the selected chain. May include transaction data, estimated gas, contract address, and bonding curve parameters.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dexl-create-token-d88e5041/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dexl.io](https://www.zero.xyz/host/api.dexl.io/llms.txt)
