Get Token
curl --request GET \
--url https://inkypump.com/api/tokenimport requests
url = "https://inkypump.com/api/token"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://inkypump.com/api/token', 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://inkypump.com/api/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://inkypump.com/api/token"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://inkypump.com/api/token")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyInkyPump API
Get Token
Read one token’s indexed identity, launch context, lifecycle, liquidity, and metrics.
GET
/
api
/
token
Get Token
curl --request GET \
--url https://inkypump.com/api/tokenimport requests
url = "https://inkypump.com/api/token"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://inkypump.com/api/token', 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://inkypump.com/api/token",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://inkypump.com/api/token"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://inkypump.com/api/token")
.asString();require 'uri'
require 'net/http'
url = URI("https://inkypump.com/api/token")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyQuery parameters
number
required
57073 for Ink or 4663 for Robinhood.string
required
Token contract address.
Request
curl "https://inkypump.com/api/token?chainId=57073&address=0x5fc71b21bd8c7e76fa7514d9fec1f91898a86c7f"
Response
The success body is the token object itself, not{ "token": ... }.
Fields used for safe routing include:
| Field | Type | Meaning |
|---|---|---|
chain_id | number | Token chain |
address | string | Token address |
owner | string | Indexed creator |
launchpad_version | string | v1 or v2 |
hook_address | string or null | Hook that owns this V2 launch |
launch_id | string, number, or null | On-chain launch ID |
denomination_kind | string or null | Native or xStocks quote family |
is_finalized | boolean or null | Whether the curve has bonded |
lifecycle_state | string or null | Indexed execution lifecycle |
chain_canonical | boolean or null | Whether the source event remains canonical |
finality_status | string or null | Current indexer finality |
transaction_hash | string or null | Creation transaction |
Do not infer zero from
null. Do not replace hook_address with the active creation hook. An older token must remain on the deployment that created it.Errors
| Status | Response |
|---|---|
400 | Missing/invalid address or unsupported chain |
404 | { "error": "Token not found", "otherChain": ... } |
429 | Rate limited |
500 | Failed indexed lookup |
404 just after your own confirmed LaunchCreated receipt can mean the indexer has not published the record yet. Retry the read; do not resubmit the launch.