token creation info

API Endpoint

GET https://public-api.birdeye.so/defi/token_creation_info

Description

The Token Creation Info API provides information about the creation details of a specified token. It includes data such as transaction hash, creation slot, token address, decimals, and owner information.

Data Coverage

Multi-chain

Request URL

https://public-api.birdeye.so/defi/token_creation_info

Request Header

  • X-API-KEY: Your API key for authentication.
  • x-chain: The blockchain you are querying (e.g., solana).

Parameters

  • address (required): The address of the token for which creation information is requested.

Example Request

curl --request GET \
     --url 'https://public-api.birdeye.so/defi/token_creation_info?address=EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm' \
     --header 'X-API-KEY: YOUR_API_KEY' \
     --header 'x-chain: solana'

Example Response

{
  "data": {
    "txHash": "4VAGET7z5g7ogVGmbmZ6KBtF6DS8ftLWzD65BXZWQJjwASUqLod7LhGB6mqThcqo97QcC7r7uNmBY8GwsnLAA52n",
    "slot": 231220478,
    "tokenAddress": "EKpQGSJtjMFqKZ9KQanSqYXRcF8fBopzLHYxdM65zcjm",
    "decimals": 6,
    "owner": "wifq4CRwpXCK8NYtKNsQAYoDethT1aR7R1DaKCLFgAd"
  },
  "success": true
}