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

# Get Token

> Retrieve detailed information about a specific token by its address

## Query Parameters

<ParamField query="address" type="string" required>
  The Ethereum address of the token to retrieve
</ParamField>

## Response

<ResponseField name="address" type="string">
  The token contract address
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO timestamp of when the token was created
</ResponseField>

<ResponseField name="owner" type="string">
  The address of the token creator
</ResponseField>

<ResponseField name="name" type="string">
  The full name of the token
</ResponseField>

<ResponseField name="ticker" type="string">
  The token symbol/ticker
</ResponseField>

<ResponseField name="description" type="string">
  Description of the token
</ResponseField>

<ResponseField name="image_url" type="string">
  URL to the token's image/logo
</ResponseField>

<ResponseField name="telegram" type="string">
  Telegram channel/group 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 and live)
</ResponseField>

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

<ResponseField name="price_updates" type="array">
  Array of recent price update transactions with supply, trader, and transaction details
</ResponseField>

<ResponseExample>
  ```json theme={null}
  {
    "address": "0x1234567890abcdef1234567890abcdef12345678",
    "created_at": "2024-01-15T10:30:00Z",
    "owner": "0xabcdef1234567890abcdef1234567890abcdef12",
    "name": "Example Token",
    "ticker": "EXMP",
    "description": "An example token for demonstration",
    "image_url": "https://example.com/token-logo.png",
    "telegram": "https://t.me/exampletoken",
    "twitter": "https://twitter.com/exampletoken",
    "website": "https://exampletoken.com",
    "market_cap": 125.5,
    "funding_progress": 0.75,
    "price_eth": 0.000125
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://inkypump.com/api/token?address=0x1234567890abcdef1234567890abcdef12345678"
  ```

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

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

  response = requests.get(
      "https://inkypump.com/api/token",
      params={"address": "0x1234567890abcdef1234567890abcdef12345678"}
  )
  token = response.json()
  ```
</RequestExample>
