> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inkyswap.com/llms.txt
> Use this file to discover all available pages before exploring further.

# King of the INK (KOTI)

> Get the current King of the INK - the token with the highest market cap still in funding phase

## 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

<ResponseField name="address" type="string">
  Token contract address
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO timestamp of token creation
</ResponseField>

<ResponseField name="owner" type="string">
  Creator's wallet address
</ResponseField>

<ResponseField name="name" type="string">
  Token name
</ResponseField>

<ResponseField name="ticker" type="string">
  Token symbol
</ResponseField>

<ResponseField name="description" type="string">
  Token description
</ResponseField>

<ResponseField name="image_url" type="string">
  Token logo URL
</ResponseField>

<ResponseField name="telegram" type="string">
  Telegram channel URL
</ResponseField>

<ResponseField name="twitter" type="string">
  Twitter/X profile URL
</ResponseField>

<ResponseField name="website" type="string">
  Official website URL
</ResponseField>

<ResponseField name="market_cap" type="number">
  Current market capitalization in ETH
</ResponseField>

<ResponseField name="funding_progress" type="number">
  Funding progress (0-1, where 1 means fully funded)
</ResponseField>

<ResponseField name="price_eth" type="number">
  Current token price in ETH
</ResponseField>

<ResponseField name="volume_24h" type="number">
  24-hour trading volume
</ResponseField>

<ResponseField name="price_change_24h" type="number">
  24-hour price change percentage
</ResponseField>

<ResponseField name="txns_24h_buys" type="number">
  Number of buy transactions in the last 24 hours
</ResponseField>

<ResponseField name="txns_24h_sells" type="number">
  Number of sell transactions in the last 24 hours
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "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
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://inkypump.com/api/koti"
  ```

  ```typescript TypeScript theme={null}
  const response = await fetch('https://inkypump.com/api/koti');
  const koti = await response.json();
  ```

  ```python Python theme={null}
  import requests

  response = requests.get("https://inkypump.com/api/koti")
  koti = response.json()
  ```
</RequestExample>
