Token - Creation Token Info
curl --request GET \
--url https://public-api.birdeye.so/defi/token_creation_info \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/token_creation_info"
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://public-api.birdeye.so/defi/token_creation_info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"txHash": "3cW2HpkUs5Hg2FBMa52iJoSMUf8MNkkzkRcGuBs1JEesQ1pnsvNwCbTmZfeJf8hTi9NSHh1Tqx6Rz5Wrr7ePDEps",
"slot": 223012712,
"tokenAddress": "D7rcV8SPxbv94s3kJETkrfMrWqHFs6qrmtbiu6saaany",
"decimals": 5,
"owner": "JEFL3KwPQeughdrQAjLo9o75qh15nYbFJ2ZDrb695qsZ",
"blockUnixTime": 1697044029,
"blockHumanTime": "2023-10-11T17:07:09.000Z"
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}Creation & Trending
Token - Creation Token Info
Retrieve the creation transaction information of a specified token
GET
/
defi
/
token_creation_info
Token - Creation Token Info
curl --request GET \
--url https://public-api.birdeye.so/defi/token_creation_info \
--header 'X-API-KEY: <api-key>'import requests
url = "https://public-api.birdeye.so/defi/token_creation_info"
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://public-api.birdeye.so/defi/token_creation_info', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"success": true,
"data": {
"txHash": "3cW2HpkUs5Hg2FBMa52iJoSMUf8MNkkzkRcGuBs1JEesQ1pnsvNwCbTmZfeJf8hTi9NSHh1Tqx6Rz5Wrr7ePDEps",
"slot": 223012712,
"tokenAddress": "D7rcV8SPxbv94s3kJETkrfMrWqHFs6qrmtbiu6saaany",
"decimals": 5,
"owner": "JEFL3KwPQeughdrQAjLo9o75qh15nYbFJ2ZDrb695qsZ",
"blockUnixTime": 1697044029,
"blockHumanTime": "2023-10-11T17:07:09.000Z"
}
}{
"success": false,
"message": "Bad request"
}{
"success": false,
"message": "Unauthorized"
}{
"success": false,
"message": "Access Denied"
}{
"success": false,
"message": "Too many requests"
}{
"success": false,
"message": "Internal Server Error"
}- Usage Note
- Accessibility
- Chain Supported
Creation transaction context for one token.
- This endpoint returns the mint-creation or contract-creation context for a token.
- Useful when you need provenance, launch timing, or creation-wallet attribution.
- Supported networks are
solana,bsc,base,ethereum, andmonad.
- Lite
- Starter
- Premium
- Business
- Enterprise
Solana
BSC
Base
Ethereum
Monad
Compute Unit ⚙️
Compute Unit ⚙️
- This endpoint consumes
30 CUper request.
Use Cases 💡
Use Cases 💡
- Attribute a token to its creation wallet or deployment event.
- Build launch timelines, provenance checks, and token-origin reviews.
- Pair token creation context with holder or security analysis for early-stage token research.
How to Use 🛠️
How to Use 🛠️
- Set
x-chainto one of the supported creation-info networks. - Pass the token
address. - Use the returned creation details as the earliest anchor in token lifecycle analysis.
Best Practices ✅
Best Practices ✅
- Use creation info early in token review so later holder, trade, and security analysis has a clean origin point.
- Pair this endpoint with trending, security, and holder endpoints for launch diligence.
Authorizations
API key for authentication
Headers
Solana, BSC, Base, Ethereum, Monad, Robinhood networks only.
Available options:
solana, bsc, base, ethereum, monad, robinhood Query Parameters
The address of the token contract.
Was this page helpful?

