curl --request POST \
--url https://api.launch.o1.exchange/v1/launches/prepare \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-api-key: <api-key>' \
--data '
{
"chain_id": 8453,
"creator": "0x1111111111111111111111111111111111111111",
"quote_address": "0x1111111111111111111111111111111111111111",
"token": {
"name": "<string>",
"symbol": "<string>",
"image_base64": "<string>",
"description": "",
"website": "",
"x": "",
"telegram": "",
"editable_metadata": false,
"extra_metadata": []
}
}
'import requests
url = "https://api.launch.o1.exchange/v1/launches/prepare"
payload = {
"chain_id": 8453,
"creator": "0x1111111111111111111111111111111111111111",
"quote_address": "0x1111111111111111111111111111111111111111",
"token": {
"name": "<string>",
"symbol": "<string>",
"image_base64": "<string>",
"description": "",
"website": "",
"x": "",
"telegram": "",
"editable_metadata": False,
"extra_metadata": []
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
'x-api-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
chain_id: 8453,
creator: '0x1111111111111111111111111111111111111111',
quote_address: '0x1111111111111111111111111111111111111111',
token: {
name: '<string>',
symbol: '<string>',
image_base64: '<string>',
description: '',
website: '',
x: '',
telegram: '',
editable_metadata: false,
extra_metadata: []
}
})
};
fetch('https://api.launch.o1.exchange/v1/launches/prepare', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.launch.o1.exchange/v1/launches/prepare",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chain_id' => 8453,
'creator' => '0x1111111111111111111111111111111111111111',
'quote_address' => '0x1111111111111111111111111111111111111111',
'token' => [
'name' => '<string>',
'symbol' => '<string>',
'image_base64' => '<string>',
'description' => '',
'website' => '',
'x' => '',
'telegram' => '',
'editable_metadata' => false,
'extra_metadata' => [
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.launch.o1.exchange/v1/launches/prepare"
payload := strings.NewReader("{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.launch.o1.exchange/v1/launches/prepare")
.header("Idempotency-Key", "<idempotency-key>")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launch.o1.exchange/v1/launches/prepare")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"chain_id": 8453,
"actor": "0x1111111111111111111111111111111111111111",
"prepared_at": "2026-07-31T12:00:00.000Z",
"expires_at": "2026-07-31T12:00:00.000Z",
"observed_block": "1000000000000000000",
"issues": [
{
"code": "<string>",
"severity": "blocking",
"detail": "<string>",
"asset": "0x1111111111111111111111111111111111111111",
"spender": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000",
"remediation_step_id": "<string>"
}
],
"steps": [
{
"id": "<string>",
"kind": "transaction",
"label": "<string>",
"depends_on": [
"<string>"
],
"transaction": {
"chain_id": 8453,
"from": "0x1111111111111111111111111111111111111111",
"to": "0x1111111111111111111111111111111111111111",
"data": "<string>",
"value": "1000000000000000000"
},
"simulation": {
"status": "succeeded",
"block_number": "1000000000000000000"
}
}
],
"predicted_token_address": "0x1111111111111111111111111111111111111111",
"suite_id": "<string>",
"metadata_uri": "<string>",
"image_url": "<string>",
"review": {
"market": "standard",
"token": {
"name": "<string>",
"symbol": "<string>",
"editable_metadata": true,
"extra_metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
},
"quote_address": "0x1111111111111111111111111111111111111111",
"total_supply_raw": "1000000000000000000",
"pool_supply_raw": "1000000000000000000"
},
"creation_fee": {
"amount_raw": "1000000000000000000",
"currency_address": "0x1111111111111111111111111111111111111111",
"decimals": 127,
"symbol": "<string>"
}
},
"meta": {
"request_id": "req_01JZZZZZZZZZZZZZZZZZZZZZZZ",
"generated_at": "2026-07-31T12:00:00.000Z",
"warnings": [
"<string>"
]
}
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}Prepare a launch
Validate inputs and any current creation-fee requirement, pin metadata, mine an 01 address, simulate against the verified chain snapshot, and return unsigned wallet steps.
curl --request POST \
--url https://api.launch.o1.exchange/v1/launches/prepare \
--header 'Content-Type: application/json' \
--header 'Idempotency-Key: <idempotency-key>' \
--header 'x-api-key: <api-key>' \
--data '
{
"chain_id": 8453,
"creator": "0x1111111111111111111111111111111111111111",
"quote_address": "0x1111111111111111111111111111111111111111",
"token": {
"name": "<string>",
"symbol": "<string>",
"image_base64": "<string>",
"description": "",
"website": "",
"x": "",
"telegram": "",
"editable_metadata": false,
"extra_metadata": []
}
}
'import requests
url = "https://api.launch.o1.exchange/v1/launches/prepare"
payload = {
"chain_id": 8453,
"creator": "0x1111111111111111111111111111111111111111",
"quote_address": "0x1111111111111111111111111111111111111111",
"token": {
"name": "<string>",
"symbol": "<string>",
"image_base64": "<string>",
"description": "",
"website": "",
"x": "",
"telegram": "",
"editable_metadata": False,
"extra_metadata": []
}
}
headers = {
"Idempotency-Key": "<idempotency-key>",
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'Idempotency-Key': '<idempotency-key>',
'x-api-key': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
chain_id: 8453,
creator: '0x1111111111111111111111111111111111111111',
quote_address: '0x1111111111111111111111111111111111111111',
token: {
name: '<string>',
symbol: '<string>',
image_base64: '<string>',
description: '',
website: '',
x: '',
telegram: '',
editable_metadata: false,
extra_metadata: []
}
})
};
fetch('https://api.launch.o1.exchange/v1/launches/prepare', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.launch.o1.exchange/v1/launches/prepare",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'chain_id' => 8453,
'creator' => '0x1111111111111111111111111111111111111111',
'quote_address' => '0x1111111111111111111111111111111111111111',
'token' => [
'name' => '<string>',
'symbol' => '<string>',
'image_base64' => '<string>',
'description' => '',
'website' => '',
'x' => '',
'telegram' => '',
'editable_metadata' => false,
'extra_metadata' => [
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"Idempotency-Key: <idempotency-key>",
"x-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.launch.o1.exchange/v1/launches/prepare"
payload := strings.NewReader("{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Idempotency-Key", "<idempotency-key>")
req.Header.Add("x-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.launch.o1.exchange/v1/launches/prepare")
.header("Idempotency-Key", "<idempotency-key>")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launch.o1.exchange/v1/launches/prepare")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Idempotency-Key"] = '<idempotency-key>'
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"chain_id\": 8453,\n \"creator\": \"0x1111111111111111111111111111111111111111\",\n \"quote_address\": \"0x1111111111111111111111111111111111111111\",\n \"token\": {\n \"name\": \"<string>\",\n \"symbol\": \"<string>\",\n \"image_base64\": \"<string>\",\n \"description\": \"\",\n \"website\": \"\",\n \"x\": \"\",\n \"telegram\": \"\",\n \"editable_metadata\": false,\n \"extra_metadata\": []\n }\n}"
response = http.request(request)
puts response.read_body{
"data": {
"chain_id": 8453,
"actor": "0x1111111111111111111111111111111111111111",
"prepared_at": "2026-07-31T12:00:00.000Z",
"expires_at": "2026-07-31T12:00:00.000Z",
"observed_block": "1000000000000000000",
"issues": [
{
"code": "<string>",
"severity": "blocking",
"detail": "<string>",
"asset": "0x1111111111111111111111111111111111111111",
"spender": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000",
"remediation_step_id": "<string>"
}
],
"steps": [
{
"id": "<string>",
"kind": "transaction",
"label": "<string>",
"depends_on": [
"<string>"
],
"transaction": {
"chain_id": 8453,
"from": "0x1111111111111111111111111111111111111111",
"to": "0x1111111111111111111111111111111111111111",
"data": "<string>",
"value": "1000000000000000000"
},
"simulation": {
"status": "succeeded",
"block_number": "1000000000000000000"
}
}
],
"predicted_token_address": "0x1111111111111111111111111111111111111111",
"suite_id": "<string>",
"metadata_uri": "<string>",
"image_url": "<string>",
"review": {
"market": "standard",
"token": {
"name": "<string>",
"symbol": "<string>",
"editable_metadata": true,
"extra_metadata": [
{
"key": "<string>",
"value": "<string>"
}
]
},
"quote_address": "0x1111111111111111111111111111111111111111",
"total_supply_raw": "1000000000000000000",
"pool_supply_raw": "1000000000000000000"
},
"creation_fee": {
"amount_raw": "1000000000000000000",
"currency_address": "0x1111111111111111111111111111111111111111",
"decimals": 127,
"symbol": "<string>"
}
},
"meta": {
"request_id": "req_01JZZZZZZZZZZZZZZZZZZZZZZZ",
"generated_at": "2026-07-31T12:00:00.000Z",
"warnings": [
"<string>"
]
}
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}{
"type": "https://docs.o1.exchange/launchpad/api/errors-and-limits#not-found",
"title": "<string>",
"status": 499,
"code": "invalid_request",
"detail": "<string>",
"action": "<string>",
"instance": "<string>",
"request_id": "<string>",
"invalid_parameters": [
{
"name": "<string>",
"reason": "<string>",
"detail": "<string>",
"allowed": [
"<string>"
]
}
],
"suggested_endpoint": "<string>",
"resource": "<string>",
"chain_id": 8453,
"token_address": "0x1111111111111111111111111111111111111111",
"asset": "0x1111111111111111111111111111111111111111",
"actual_raw": "1000000000000000000",
"required_raw": "1000000000000000000"
}Authorizations
Production API key beginning with o1_launch_.
Headers
Generate a random UUID for each new request and reuse it only when retrying that exact request. A different payload is rejected.
1 - 255Body
Production chain ID: 8453 for Base, 4663 for Robinhood Chain, or 143 for Monad.
8453, 4663, 143 8453
Wallet that will sign and send the prepared launch transaction.
^0x[0-9a-fA-F]{40}$"0x1111111111111111111111111111111111111111"
Launch route to use. The selected quote must be active for this market.
standard, rwa Active quote address returned by GET /config for the selected chain and market. The zero address represents an active native-currency quote.
^0x[0-9a-fA-F]{40}$"0x1111111111111111111111111111111111111111"
Token identity, public profile, image, and optional metadata settings.
Show child attributes
Show child attributes
