GET
/
api
/
koti
curl -X GET "https://inkypump.com/api/koti"
{
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "created_at": "2024-01-15T10:30:00Z",
  "owner": "0xabcdef1234567890abcdef1234567890abcdef12",
  "name": "King Token",
  "ticker": "KING",
  "description": "The current king of the hill",
  "image_url": "https://example.com/king-logo.png",
  "telegram": "https://t.me/kingtoken",
  "twitter": "https://twitter.com/kingtoken",
  "website": "https://kingtoken.com",
  "market_cap": 450.75,
  "funding_progress": 0.85,
  "price_eth": 0.00045,
  "volume_24h": 125.3,
  "price_change_24h": 35.2,
  "txns_24h_buys": 342,
  "txns_24h_sells": 156
}

Description

Returns the token with the highest market capitalization that hasn’t reached full funding yet (funding_progress < 1). This endpoint is useful for discovering the most popular token currently raising funds.

Response

address
string
Token contract address
created_at
string
ISO timestamp of token creation
owner
string
Creator’s wallet address
name
string
Token name
ticker
string
Token symbol
description
string
Token description
image_url
string
Token logo URL
telegram
string
Telegram channel URL
twitter
string
Twitter/X profile URL
website
string
Official website URL
market_cap
number
Current market capitalization in ETH
funding_progress
number
Funding progress (0-1, where 1 means fully funded)
price_eth
number
Current token price in ETH
volume_24h
number
24-hour trading volume
price_change_24h
number
24-hour price change percentage
txns_24h_buys
number
Number of buy transactions in the last 24 hours
txns_24h_sells
number
Number of sell transactions in the last 24 hours
{
  "address": "0x1234567890abcdef1234567890abcdef12345678",
  "created_at": "2024-01-15T10:30:00Z",
  "owner": "0xabcdef1234567890abcdef1234567890abcdef12",
  "name": "King Token",
  "ticker": "KING",
  "description": "The current king of the hill",
  "image_url": "https://example.com/king-logo.png",
  "telegram": "https://t.me/kingtoken",
  "twitter": "https://twitter.com/kingtoken",
  "website": "https://kingtoken.com",
  "market_cap": 450.75,
  "funding_progress": 0.85,
  "price_eth": 0.00045,
  "volume_24h": 125.3,
  "price_change_24h": 35.2,
  "txns_24h_buys": 342,
  "txns_24h_sells": 156
}
curl -X GET "https://inkypump.com/api/koti"