Get transaction status
curl --request GET \
--url https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}', 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/transactions/{chain_id}/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"transaction_hash": "<string>",
"chain": {
"block_number": 1,
"replacement_transaction_hash": "<string>"
},
"indexing": {
"updated_at": "2023-11-07T05:31:56Z"
},
"operations": [
{
"onchain": {
"transaction_hash": "<string>",
"block_number": 1,
"block_hash": "<string>",
"log_index": 1
}
}
],
"launches": [
{
"token": {
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 127,
"image_url": "<string>"
},
"launch": {
"creator_address": "<string>",
"suite": {
"id": "<string>",
"version": "<string>"
},
"pool_id": "<string>",
"quote": {
"address": "<string>",
"symbol": "<string>",
"decimals": 127
},
"features": {
"allocations": true,
"vesting": true,
"editable_metadata": true
},
"onchain": {
"transaction_hash": "<string>",
"block_number": 1,
"block_hash": "<string>",
"log_index": 1
},
"created_at": "2023-11-07T05:31:56Z",
"creation_fee": {
"amount_raw": "<string>",
"currency_address": "<string>",
"decimals": 127,
"symbol": "<string>"
}
},
"market_data": {
"price": {
"quote": 123,
"usd": 123
},
"market_cap": {
"quote": 123,
"usd": 123
},
"liquidity": {
"quote": 123,
"usd": 123
},
"activity": {
"1h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"6h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"24h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"lifetime": {
"trades": 123,
"volume_quote_raw": "1000000000000000000"
}
},
"last_trade_at": "2026-07-31T12:00:00.000Z",
"quote_price": {
"usd": 123,
"updated_at": "2026-07-31T12:00:00.000Z"
},
"observed_block": 123,
"confirmed_block": 123,
"updated_at": "2026-07-31T12:00:00.000Z"
}
}
]
},
"meta": {
"request_id": "<string>",
"generated_at": "2023-11-07T05:31:56Z",
"warnings": [
"<string>"
]
}
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}Transactions
Get transaction status
Read the indexed public view of a wallet-broadcast transaction. Normal chain indexers and webhooks discover external transactions, so no notification route is required; data is null until the transaction is observed.
GET
/
transactions
/
{chain_id}
/
{tx_hash}
Get transaction status
curl --request GET \
--url https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash} \
--header 'x-api-key: <api-key>'import requests
url = "https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}', 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/transactions/{chain_id}/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"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"
"net/http"
"io"
)
func main() {
url := "https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.launch.o1.exchange/v1/transactions/{chain_id}/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": {
"transaction_hash": "<string>",
"chain": {
"block_number": 1,
"replacement_transaction_hash": "<string>"
},
"indexing": {
"updated_at": "2023-11-07T05:31:56Z"
},
"operations": [
{
"onchain": {
"transaction_hash": "<string>",
"block_number": 1,
"block_hash": "<string>",
"log_index": 1
}
}
],
"launches": [
{
"token": {
"address": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": 127,
"image_url": "<string>"
},
"launch": {
"creator_address": "<string>",
"suite": {
"id": "<string>",
"version": "<string>"
},
"pool_id": "<string>",
"quote": {
"address": "<string>",
"symbol": "<string>",
"decimals": 127
},
"features": {
"allocations": true,
"vesting": true,
"editable_metadata": true
},
"onchain": {
"transaction_hash": "<string>",
"block_number": 1,
"block_hash": "<string>",
"log_index": 1
},
"created_at": "2023-11-07T05:31:56Z",
"creation_fee": {
"amount_raw": "<string>",
"currency_address": "<string>",
"decimals": 127,
"symbol": "<string>"
}
},
"market_data": {
"price": {
"quote": 123,
"usd": 123
},
"market_cap": {
"quote": 123,
"usd": 123
},
"liquidity": {
"quote": 123,
"usd": 123
},
"activity": {
"1h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"6h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"24h": {
"trades": 123,
"volume_quote_raw": "1000000000000000000",
"volume_usd": 123
},
"lifetime": {
"trades": 123,
"volume_quote_raw": "1000000000000000000"
}
},
"last_trade_at": "2026-07-31T12:00:00.000Z",
"quote_price": {
"usd": 123,
"updated_at": "2026-07-31T12:00:00.000Z"
},
"observed_block": 123,
"confirmed_block": 123,
"updated_at": "2026-07-31T12:00:00.000Z"
}
}
]
},
"meta": {
"request_id": "<string>",
"generated_at": "2023-11-07T05:31:56Z",
"warnings": [
"<string>"
]
}
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}{
"type": "<string>",
"title": "<string>",
"status": 499,
"code": "<string>",
"detail": "<string>",
"request_id": "<string>",
"instance": "<string>"
}Authorizations
Production API key beginning with o1_launch_.
Path Parameters
Production chain containing the resource.
Available options:
8453, 4663 Example:
8453
Transaction hash.
Pattern:
^0x[0-9a-fA-F]{64}$Example:
"0x1111111111111111111111111111111111111111111111111111111111111111"
⌘I
