Tolkien ( $TOLKIEN )
Built for Solana Cult
$Tolkien 5LdGTYtkWrSkcnyUJFVAHZzrC8QrFeioQLmPXQc1pump
Server base:
Public APIs for the vibe coding era
Built for Solana Cult
[enter]

$TOLKIEN is Toly’s Super Token idea, turned into infrastructure

TL;DR
Inspired by Toly’s “Super Token” thesis, we are building Tolkien as a community-funded infrastructure project. Creator fees are routed back to fund free and high-quality APIs for developers, users, and researchers, empowering the Solana ecosystem. For the Cult.

Tolkien is inspired by Anatoly Yakovenko’s long-running “Super Token” narrative. What makes this idea notable is not the phrase itself, but the fact that it has been repeated consistently since 2023 until now.

In a space where most narratives are short-lived, repetition signals conviction. When an idea keeps resurfacing across different moments, market cycles, and contexts, it suggests an unresolved direction rather than a passing thought.

The “Super Token” concept points to something deeper than memes or utility in isolation. It hints at a system where culture, coordination, and real usefulness converge into a single economic loop. Not a token that exists for speculation, but one that continuously funds and reinforces what comes next.

Tolkien takes that repeated signal seriously. We interpret it as a call to turn cultural energy into durable infrastructure, rather than letting it dissipate into short-term hype.

status
public endpoints, fair use throttling
$ tolkien status
- public endpoints: yes
- keys: free tier available
- limits: fair-use throttling
- focus: solana signals, narratives, on-chain + social fusion
- uptime target: 99.9%
- latency monitored: yes
- cache protection: enabled
> Built for Solana Cult

Live user map
loading…
points: 9
window: 24h
Requests / second
Auto refresh
now: 0.00
min: 0.00
max: 1.00
samples: 0
Live telemetry
The globe shows aggregated user presence (coarse geo only). The RPS chart shows real traffic load. This is how Tolkien proves it is infrastructure.
Privacy: no IP is ever displayed. Points are bucketed and rounded.

[status]

System Status

Infrastructure transparency. Measured by uptime, latency, and service health.

Loading system status...

[key]

How to get an API key

Free keys. Join our X Community, then submit your handle here to generate a key.

Steps
01Join the Tolkien X CommunityThis reduces spam and protects uptime for public endpoints.
02Enter your X handle on this websiteType your @handle, then click Submit. The site generates a key instantly.
03Community check requiredPlease join our community to ensure your API key works 100%.
Generate your key
Example: @yourhandle

[api]

API

Quickstart
Base URL + API key header + a working call
Singapore:https://api.solana-tolkien.xyz
US:https://us.api.solana-tolkien.xyz
Selected:https://api.solana-tolkien.xyz
curl -s "https://api.solana-tolkien.xyz/v1/sol/token/market/3k29upUrDXNF3cuRYArqUKw8AtUNWSqbfZfRvB6fBAGS" \
  -H "x-api-key: YOUR_KEY"
Token
Search, metadata, market, and top traded tokens.
GET /v1/sol/tokens/search?query=bummit&limit=20
GET /v1/sol/token/metadata/{mint}
GET /v1/sol/token/market/{mint}
GET /v1/sol/tokens/top-traded?window=24h&launchpads=pump.fun&limit=20
launchpads: pump.fun, letsbonk.fun, bags.fun, raydium-launchlab, met-dbc
Holders
Get top 100 holders of a token (and their SOL balances).
GET /v1/sol/token/holders/top?mint={mint}&limit=100
Chart
OHLCV candle history for charting.
GET /v1/sol/token/ohlcv?base={mint}&quote=So11111111111111111111111111111111111111112&tf=1m&from={unix}&to={unix}
tf: 1m, 5m, 15m, 1h, 4h, 1d (depends on availability)
Wallet
Wallet profit stats and DEX transaction history.
GET /v1/sol/wallet/{address}/profit-stats?range=1d   # 1 day
GET /v1/sol/wallet/{address}/profit-stats?range=7d   # 7 days
GET /v1/sol/wallet/{address}/profit-stats?range=30d  # 30 days
GET /v1/sol/wallet/{address}/profit-stats?range=all  # all-time
GET /v1/sol/wallet/{address}/dex-txs?startTime={ms_unix}
Flow
Token trades stream + creator tokens list (migration).
GET /v1/sol/token/trades?mint={mint}&minUsd=2000&limit=100&sort=asc
GET /v1/sol/dev/{creator}/tokens?limit=50
Token Narrative
NEW
AI-rewritten narrative, cached 15 days
GET /v1/sol/token/narrative/{token}
Returns a short Gen-Z rewrite of the token narrative (facts preserved).
GET /v1/sol/token/bags-royalties/{mint}
info: Get bags token Royalties
Returns royalty receivers for a BAGS token mint.
curl -s "$API_BASE/v1/sol/token/bags-royalties/3YS67LKg1Q7Dm7wRDvB27W9USipJcZQAPAAykjTdBAGS" \
              -H "x-api-key: YOUR_KEY"
{
              "ok": true,
              "data": {
                "list": [
                  {
                    "username": "",
                    "twitter_username": "rough__sea",
                    "royalty_bps": 10000,
                    "is_creator": false,
                    "wallet": "7Yhi8sRpxT3PdZ4vTCojYCH9MSLVvR756Xh9Pv3kfEqv"
                  }
                ]
              }
            }
X.com
NEW
social signal endpoints
GET
/v1/x/user/{username}
Get X user profile by username
GET
/v1/x/tweet/{chain}/{token}/{tweet_id}
Get tweet preview + metrics + media
GET
/v1/x/community/{community_id}
Get community info + creator + member preview
Examples
A few common calls (ready to paste)
# search
curl -s "https://api.solana-tolkien.xyz/v1/sol/tokens/search?query=bummit&limit=10" \
  -H "x-api-key: YOUR_KEY"

# top traded (pump.fun)
curl -s "https://api.solana-tolkien.xyz/v1/sol/tokens/top-traded?window=24h&launchpads=pump.fun&limit=20" \
  -H "x-api-key: YOUR_KEY"

# token trades (min usd)
curl -s "https://api.solana-tolkien.xyz/v1/sol/token/trades?mint=6H5jMksdR37RpeCvMSeHhvUiiZrLKz8bAUjC1iyppump&minUsd=2000&limit=50&sort=asc" \
  -H "x-api-key: YOUR_KEY"

# wallet stats (1d / 7d / 30d / all)
curl -s "https://api.solana-tolkien.xyz/v1/sol/wallet/EvGpkcSBfhp5K9SNP48wVtfNXdKYRBiK3kvMkB66kU3Q/profit-stats?range=30d" \
  -H "x-api-key: YOUR_KEY"

  # X.com user profile
curl -s 'https://api.solana-tolkien.xyz/v1/x/user/tolkien_xyz' \
  -H 'x-api-key: YOUR_API_KEY'

# X.com tweet preview
curl -s 'https://api.solana-tolkien.xyz/v1/x/tweet/sol/B2TMBdKDB2XTPc1Wgj1kVhY1kMb4j4mvKeuwx3KUcwy2/2011861353305424334' \
  -H 'x-api-key: YOUR_API_KEY'

# X.com community info
curl -s 'https://api.solana-tolkien.xyz/v1/x/community/2011859976336130173' \
  -H 'x-api-key: YOUR_API_KEY'

  # token narrative (AI, cached 15 days)
curl -s "https://api.solana-tolkien.xyz/v1/sol/token/narrative/8AdsF2QXFA8QkFuQ9TrQW6nEyM4E6yT4AwqgZ5cTpump" \
  -H "x-api-key: YOUR_KEY"
Example response
Data only. No upstream hints.
{
  "id": "3k29upUrDXNF3cuRYArqUKw8AtUNWSqbfZfRvB6fBAGS",
  "name": "Official Nick Shirley support",
  "symbol": "SHIRLEY",
  "icon": "https://ipfs.io/ipfs/QmeNJs5N4h4Xy2J9w7fDXvCDMkoFRidp3KjQh1MB73wekx",
  "decimals": 9,
  "twitter": "https://x.com/kevRMFC/status/2005095648706920895?s=20",
  "website": null,
  "dev": "BAGSB9TpGrZxQbEsrEznv5jXXdwyP6AXerN8aVRiAmcv",
  "supply": {
    "circ": 999809381.4713787,
    "total": 999809381.4713787
  },
  "market": {
    "usdPrice": 0.000010864426321626503,
    "mcap": 10862.35536066676,
    "liquidity": 4877.147720562758,
    "stats24h": {
      "priceChange": 0.5257063717765793,
      "volumeChange": -18.735044399189878,
      "numTraders": 29,
      "numBuys": 29,
      "numSells": 33
    }
  }
}

[lore]

Lore: the Super Token thesis, written as product

Why Tolkien exists, what it builds, and how the loop compounds.

origin

Toly’s “Super Token” idea is a direction: memes are not the product, they are the distribution layer. The product is what culture funds next.

Tolkien takes that direction seriously: it funds real infrastructure and re-serves it as public intelligence for Solana builders and traders.

mission

Make high-quality APIs accessible to anyone who can ship, regardless of budget. If vibe coding is the new default, then public APIs become the new public goods.

mission:
Fund infrastructure. Share it publicly. Protect it with fair limits.

north star:
Ship usable intelligence, not hype.
why this must exist

The ecosystem has talent, but the best data is expensive. New developers get blocked. Students cannot experiment. Small teams cannot compete with API budgets. Tolkien removes that bottleneck so iteration speed becomes the advantage.

This is how culture becomes infrastructure: attention becomes funding, funding becomes APIs, APIs create tools, tools create alpha, alpha brings more attention.

the compounding loop
01. Meme -> attention 02. Utility -> tools 03. Cult -> coordination 04. Intelligence -> signals 05. Compounding -> funds more infrastructure Rule: Attention funds infrastructure; infrastructure returns alpha; alpha grows the culture.

[request]

Request APIs / WebSocket

Need a new API or real-time stream? Submit your request. We track demand before building.

Submit a request
submissions:
Requests are reviewed manually. Popular demand gets built first.