Skip to main content
GET
/
tokens
/
{mint}
Single-token metadata
curl --request GET \
  --url https://api.dexploit.dev/tokens/{mint} \
  --header 'X-API-Key: <api-key>'
{
  "mint": "<string>",
  "name": "<string>",
  "symbol": "<string>",
  "decimals": 123,
  "description": "<string>",
  "image_url": "<string>",
  "image_url_cached": "<string>",
  "metadata_uri": "<string>",
  "twitter": "<string>",
  "telegram": "<string>",
  "website": "<string>",
  "creator": "<string>",
  "supply_atomic": 123,
  "mint_authority": "<string>",
  "freeze_authority": "<string>",
  "update_authority": "<string>",
  "sectors": [
    "<string>"
  ],
  "audit": {
    "mint": "<string>",
    "lp_burnt": true,
    "mint_revoked": true,
    "freeze_revoked": true,
    "top10_pct": 123,
    "computed_at": 123
  },
  "created_at": 123,
  "updated_at": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.dexploit.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Preferred for swaps-api endpoints (/swaps/*, /stats/*, /trending, /pool-events).

Path Parameters

mint
string
required

Response

Token

Token metadata as indexed from on-chain + the Metaplex URI. Audit flags are inlined.

mint
string
name
string
symbol
string
decimals
integer
description
string | null
image_url
string | null
image_url_cached
string | null

Dexploit-hosted mirror; safe to embed without CORS pain.

metadata_uri
string | null
twitter
string | null
telegram
string | null
website
string | null
creator
string
supply_atomic
integer<int64>

Base-unit supply; divide by 10**decimals for human-readable.

mint_authority
string | null
freeze_authority
string | null
update_authority
string | null
sectors
string[]
audit
object

On-chain authority and LP-burn checks for a token.

created_at
integer

Unix epoch seconds.

updated_at
integer

Unix epoch seconds.