Site config
Public, non-sensitive site settings: feature flags, the active announcement banner, and SEO text. Useful if you mirror the UI or want to detect maintenance mode.
GET
/api/configResponse
200 OK · application/json
{
"flags": {
"paperTrading": true,
"reactions": true,
"embeds": true,
"priceAlerts": true,
"watchlist": true,
"trendingTicker": true,
"riskPanel": true,
"search": true,
"liveStream": true,
"signups": true,
"socialLogin": true,
"maintenance": false
},
"announcement": "",
"seo": { "title": "DexScanner — ...", "description": "..." }
}Fields
flags— feature toggles applied across the live site (e.g.maintenance).announcement— a banner message, or empty string when none.seo— the public page title and description.
This endpoint carries no secrets and no internal configuration. Feed curation is applied server-side, so the underlying lists are not exposed.
Versioning
The API is currently unversioned and may change; see the changelog for breaking changes.