Get Token Developer Info#
Retrieve developer-related data for a specified token.
Request URL#
GET https://web3.okx.com/api/v6/dex/market/memepump/tokenDevInfo
Request Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| chainIndex | String | Yes | Chain unique identifier (e.g., 501 = Solana). Only single-chain queries are supported. |
| tokenContractAddress | String | Yes | Token contract address. |
Response Parameters#
| Parameter | Type | Description |
|---|---|---|
| devLaunchedInfo | Object | Summary of tokens launched by this developer. |
| >totalToken | String | Total number of tokens launched by this developer. |
| >rugPullCount | String | Number of rug pulls. |
| >migratedCount | String | Number of successfully migrated tokens. |
| >goldenGemCount | String | Number of golden gem tokens. |
| devHoldingInfo | Object | Developer's current holding info for this token. |
| >devHoldingPercent | String | Developer's current holdings (%). |
| >devAddress | String | Developer wallet address. |
| >fundingAddress | String | Funding source wallet address. |
| >devBalance | String | Developer's native token balance. |
| >lastFundedTimestamp | String | Last time the developer wallet was funded (ISO 8601). |
Request Example#
Shell
curl --location --request GET 'https://web3.okx.com/api/v6/dex/market/memepump/tokenDevInfo?chainIndex=501&tokenContractAddress=7Gf9...pump' \
--header 'OK-ACCESS-KEY: 37c541a1-****-****-****-10fe7a038418' \
--header 'OK-ACCESS-SIGN: leaV********3uw=' \
--header 'OK-ACCESS-PASSPHRASE: 1****6' \
--header 'OK-ACCESS-TIMESTAMP: 2023-10-18T12:21:41.274Z'
Response Example#
Json
{
"code": "0",
"msg": "",
"data": {
"devLaunchedInfo": {
"totalToken": "18",
"rugPullCount": "3",
"migratedCount": "11",
"goldenGemCount": "2"
},
"devHoldingInfo": {
"devHoldingPercent": "2.35",
"devAddress": "3kXoZt...q1Re",
"fundingAddress": "Fv8N...tuQ",
"devBalance": "0.064",
"lastFundedTimestamp": "2025-06-26T06:37:39Z"
}
}
}