curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12"
curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12&sort=market_cap_desc&limit=10"
const ownerAddress = '0xabcdef1234567890abcdef1234567890abcdef12';
const response = await fetch(`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}`);
const data = await response.json();
const sortedResponse = await fetch(
`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}&sort=market_cap_desc&limit=10`
);
const sortedData = await sortedResponse.json();
import requests
owner_address = "0xabcdef1234567890abcdef1234567890abcdef12"
response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={"owner": owner_address}
)
data = response.json()
sorted_response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={
"owner": owner_address,
"sort": "market_cap_desc",
"limit": 10
}
)
sorted_data = sorted_response.json()
{
"tokens": [
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"created_at": "2024-01-15T10:30:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Moon Token",
"ticker": "MOON",
"description": "To the moon and beyond",
"image_url": "https://example.com/moon-logo.png",
"market_cap": 500.5,
"funding_progress": 1.0,
"volume_24h": 250.8,
"total_holders": 1250,
"is_graduated": true
},
{
"address": "0x9876543210fedcba9876543210fedcba98765432",
"created_at": "2024-01-14T08:15:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Star Token",
"ticker": "STAR",
"description": "Reach for the stars",
"image_url": "https://example.com/star-logo.png",
"market_cap": 125.3,
"funding_progress": 0.65,
"volume_24h": 45.2,
"total_holders": 423,
"is_graduated": false
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"totalPages": 1
}
}
InkyPump API
Tokens by Owner
Get all tokens created by a specific wallet address
GET
/
api
/
tokens
/
by-owner
curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12"
curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12&sort=market_cap_desc&limit=10"
const ownerAddress = '0xabcdef1234567890abcdef1234567890abcdef12';
const response = await fetch(`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}`);
const data = await response.json();
const sortedResponse = await fetch(
`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}&sort=market_cap_desc&limit=10`
);
const sortedData = await sortedResponse.json();
import requests
owner_address = "0xabcdef1234567890abcdef1234567890abcdef12"
response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={"owner": owner_address}
)
data = response.json()
sorted_response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={
"owner": owner_address,
"sort": "market_cap_desc",
"limit": 10
}
)
sorted_data = sorted_response.json()
{
"tokens": [
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"created_at": "2024-01-15T10:30:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Moon Token",
"ticker": "MOON",
"description": "To the moon and beyond",
"image_url": "https://example.com/moon-logo.png",
"market_cap": 500.5,
"funding_progress": 1.0,
"volume_24h": 250.8,
"total_holders": 1250,
"is_graduated": true
},
{
"address": "0x9876543210fedcba9876543210fedcba98765432",
"created_at": "2024-01-14T08:15:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Star Token",
"ticker": "STAR",
"description": "Reach for the stars",
"image_url": "https://example.com/star-logo.png",
"market_cap": 125.3,
"funding_progress": 0.65,
"volume_24h": 45.2,
"total_holders": 423,
"is_graduated": false
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"totalPages": 1
}
}
Description
Returns a paginated list of all tokens created by a specific wallet address. This endpoint is useful for viewing a creator’s portfolio of launched tokens.Query Parameters
string
required
The wallet address of the token creator
number
default:"1"
Page number for pagination
number
default:"20"
Number of tokens per page (max: 100)
string
default:"created_at_desc"
Sorting order. Options:
created_at_desc: Newest firstcreated_at_asc: Oldest firstmarket_cap_desc: Highest market cap firstmarket_cap_asc: Lowest market cap firstfunding_progress_desc: Highest funding progress firstvolume_24h_desc: Highest 24h volume first
boolean
default:"false"
Include tokens that have been disabled or failed
Response
array
Array of token objects
Show Token Object
Show Token Object
string
Token contract address
string
ISO timestamp of token creation
string
Creator’s wallet address
string
Token name
string
Token symbol
string
Token description
string
Token logo URL
number
Current market capitalization in ETH
number
Funding progress (0-1, where 1 means fully funded)
number
24-hour trading volume
number
Total number of token holders
boolean
Whether the token has completed funding
object
{
"tokens": [
{
"address": "0x1234567890abcdef1234567890abcdef12345678",
"created_at": "2024-01-15T10:30:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Moon Token",
"ticker": "MOON",
"description": "To the moon and beyond",
"image_url": "https://example.com/moon-logo.png",
"market_cap": 500.5,
"funding_progress": 1.0,
"volume_24h": 250.8,
"total_holders": 1250,
"is_graduated": true
},
{
"address": "0x9876543210fedcba9876543210fedcba98765432",
"created_at": "2024-01-14T08:15:00Z",
"owner": "0xabcdef1234567890abcdef1234567890abcdef12",
"name": "Star Token",
"ticker": "STAR",
"description": "Reach for the stars",
"image_url": "https://example.com/star-logo.png",
"market_cap": 125.3,
"funding_progress": 0.65,
"volume_24h": 45.2,
"total_holders": 423,
"is_graduated": false
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 5,
"totalPages": 1
}
}
curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12"
curl -X GET "https://inkypump.com/api/tokens/by-owner?owner=0xabcdef1234567890abcdef1234567890abcdef12&sort=market_cap_desc&limit=10"
const ownerAddress = '0xabcdef1234567890abcdef1234567890abcdef12';
const response = await fetch(`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}`);
const data = await response.json();
const sortedResponse = await fetch(
`https://inkypump.com/api/tokens/by-owner?owner=${ownerAddress}&sort=market_cap_desc&limit=10`
);
const sortedData = await sortedResponse.json();
import requests
owner_address = "0xabcdef1234567890abcdef1234567890abcdef12"
response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={"owner": owner_address}
)
data = response.json()
sorted_response = requests.get(
"https://inkypump.com/api/tokens/by-owner",
params={
"owner": owner_address,
"sort": "market_cap_desc",
"limit": 10
}
)
sorted_data = sorted_response.json()
⌘I