Retrieve a historical coin list created by a specific creator address. This endpoint returns detailed information about coins that were created by the specified creator address, including token metadata, supply information, and social links.
Endpoint
GET /api/v1/partner/coin/created-by-address
Parameters
Request Parameters
Name
Type
Required
Description
address
string
Yes
The creator address to query for created coins.
limit
number
No
Maximum number of records to return. Default: 20.
offset
number
No
Number of records to skip before starting to return results. Default: 0.
{
"code": 200,
"message": "OK",
"data": [
{
"coin_type": "0x30f887cc127222230fe2b81c57b48c0a76da37fc8d817166dbdbd85a9ed63cbe::suncat::SUNCAT",
"name": "Sui Cat",
"symbol": "SunCat",
"decimals": 6,
"logo": "https://statics.noodles.fi/logo/10131952366806563413.png",
"total_supply": 10000000000,
"circulating_supply": 10000000000,
"creator": "0x44d8e303b7baabf00e4cdb89e6c7196fd5c69abece9041f90e7525e547ef6ea2",
"coin_category_group": "Meme",
"published_at": "2024-09-08T04:16:09Z",
"description": "The original cat-themed meme coin on the Sui blockchain! As the first of its kind, When it comes to cat coins on Sui, were the trailblazers setting the trend. Get in on the ground floor with Sui Cat and be part of the OG cat coin revolution!",
"social": {
"website": "https://suicat.fun/"
},
"verified": false
},
{
"coin_type": "0x0bffc4f0333fb1256431156395a93fc252432152b0ff732197e8459a365e5a9f::suicat::SUICAT",
"name": "SUI CAT",
"symbol": "SUICAT",
"decimals": 6,
"logo": "https://statics.noodles.fi/logo/14973323781478121507.png",
"total_supply": 10000000000,
"circulating_supply": 10000000000,
"creator": "0x44d8e303b7baabf00e4cdb89e6c7196fd5c69abece9041f90e7525e547ef6ea2",
"coin_category_group": "Meme",
"published_at": "2024-09-08T07:14:05Z",
"description": "The original cat-themed meme coin on the Sui blockchain! As the first of its kind, When it comes to cat coins on Sui, were the trailblazers setting the trend. Get in on the ground floor with Sui Cat and be part of the OG cat coin revolution!\n\n",
"social": {
"twitter": "https://x.com/SuiCatcoin",
"telegram": "https://t.me/suicatportal",
"website": "https://suicat.fun/"
},
"verified": true
}
],
"pagination": {
"offset": 0,
"limit": 10
}
}