GET
/
api
/
eoti
curl -X GET "https://inkypump.com/api/eoti"

curl -X GET "https://inkypump.com/api/eoti?includeBidData=true"
{
  "address": "0x75e7A5316e44755FF4ad724ee45337D1Eef6895e",
  "created_at": "2024-01-10T08:15:00Z",
  "owner": "0xabcdef1234567890abcdef1234567890abcdef12",
  "name": "Emperor Token",
  "ticker": "EMPEROR",
  "description": "The reigning Emperor of the INK ecosystem",
  "image_url": "https://example.com/emperor-logo.png",
  "telegram": "https://t.me/emperortoken",
  "twitter": "https://twitter.com/emperortoken",
  "website": "https://emperortoken.com",
  "market_cap": 1250.5,
  "funding_progress": 1.0,
  "price_eth": 0.00125,
  "volume_24h": 450.8,
  "price_change_24h": 125.3,
  "txns_24h_buys": 892,
  "txns_24h_sells": 423
}

Description

Returns information about the current Emperor of the INK (EOTI), which is the daily Emperor token that receives premium placement and visibility across the platform. The EOTI is selected through a competitive bidding system where projects can bid to become the Emperor for the next day. The endpoint automatically returns the current day’s Emperor token based on the smart contract.

Query Parameters

includeBidData
boolean
default:"false"
Include bidding data such as current bid amount, next Emperor, and bidding history

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 and live)
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
volume_1h
number
1-hour trading volume
price_change_1h
number
1-hour price change percentage
txns_1h_buys
number
Number of buy transactions in the last hour
txns_1h_sells
number
Number of sell transactions in the last hour
total_holders
number
Total number of token holders
top_10_percentage
number
Percentage of supply held by top 10 holders
dev_holding_percentage
number
Percentage of supply held by developer
bidData
object
Bidding information (only included if includeBidData=true)
{
  "address": "0x75e7A5316e44755FF4ad724ee45337D1Eef6895e",
  "created_at": "2024-01-10T08:15:00Z",
  "owner": "0xabcdef1234567890abcdef1234567890abcdef12",
  "name": "Emperor Token",
  "ticker": "EMPEROR",
  "description": "The reigning Emperor of the INK ecosystem",
  "image_url": "https://example.com/emperor-logo.png",
  "telegram": "https://t.me/emperortoken",
  "twitter": "https://twitter.com/emperortoken",
  "website": "https://emperortoken.com",
  "market_cap": 1250.5,
  "funding_progress": 1.0,
  "price_eth": 0.00125,
  "volume_24h": 450.8,
  "price_change_24h": 125.3,
  "txns_24h_buys": 892,
  "txns_24h_sells": 423
}
curl -X GET "https://inkypump.com/api/eoti"

curl -X GET "https://inkypump.com/api/eoti?includeBidData=true"