Ignelis API
Launch tokens, programmatically.
The same engine that powers the Ignelis app — exposed as a clean, authenticated HTTP & websocket API. Build bots, exchanges, dashboards, or your own launchpad on top of it.
Sub-100ms p99 latency
Non-custodial signing
Realtime websockets
Signed webhooks
Pricing
Two tiers. Pay once, lifetime access.
Starter
For builders shipping their first integration.
4.50
SOL · one-time
5,000 RPS sustained
- Full feature access — every public endpoint
- 5,000 requests per second sustained
- Token mint, liquidity, copy-trade endpoints
- Real-time websocket streams
- Webhook event delivery
- Standard support (24h SLA)
Pro
For high-frequency operators and exchanges.
10.50
SOL · one-time
75,000 RPS sustained
- Everything in Starter
- 75,000 requests per second sustained
- Most advanced, unreleased endpoints (early access)
- Private MEV-protected mint route
- Dedicated bundler & priority block inclusion
- Direct Telegram line to the core team
- Custom rate-limit overrides on request
Documentation
A taste of the API.
Full reference, SDKs (TypeScript, Rust, Python) and a sandbox key are unlocked the moment your payment settles on-chain.
POST /v1/tokens/create
curl -X POST https://api.ignelis.app/v1/tokens/create \
-H "Authorization: Bearer $IGNELIS_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Ignelis",
"symbol": "IGN",
"supply": 1000000000,
"decimals": 9,
"liquidity_sol": 5,
"revoke_mint": true
}'GET /v1/tokens/{mint}
curl https://api.ignelis.app/v1/tokens/$MINT \
-H "Authorization: Bearer $IGNELIS_KEY"
# → {
# "mint": "…",
# "price_usd": 0.0428,
# "market_cap": 42800000,
# "liquidity_usd": 1200000,
# "holders": 12847,
# "volume_24h": 8900000
# }Every endpoint signs with your wallet — Ignelis never touches your keys, never holds custody, and never logs payloads. Rate limits apply per key, not per IP.