Coral developer API

Build apps, agents, dashboards, bots, and research tools with Coral's public read API. Endpoint details are shown below by default, with the raw spec available when you need it.

Public data, no key needed

The v1 API is unauthenticated and open for public reads. Pull token cards, treasury, and leaderboard data straight into your app.

Heavily rate limited

Public preview limits are intentionally strict. Cache responses and avoid polling faster than your product needs.

Attribution required

Show visible attribution to Coral and link to 0xcoral.com when displaying Coral data in another app or agent.

Example

const res = await fetch('https://api.0xcoral.com/api/v1/dashboard')
const coral = await res.json()

Reference

4 operations from Coral API 1.0.0.

Current capabilities

get/community/leaderboard

Get the community caller leaderboard

Returns a sanitized 7d community caller leaderboard from Coral community intelligence data. Handles and aggregate performance metrics are included; internal ids are excluded.

Current capabilities
get/community/tokens

Get trending community tokens

Returns the sanitized cross-community trending rollup (fixed 24h window): tokens trending across the communities Coral watches, ranked by mention momentum, with distinct-community counts and optional 1h flow. This is an aggregate only — there is no way to query a single server. Use limit to cap results and includeMetadata=false to skip live market fields. Raw messages, chat ids, tenant ids, caller handles, and upstream source names are excluded.

Current capabilities

Parameters

limitquery

number · Maximum tokens to return, from 1 to 50.

includeMetadataquery

boolean · Set false, 0, or no to skip cached/live token metadata enrichment.

get/dashboard

Public Coral dashboard snapshot

Current public Coral aggregate. This is the best starting point for apps and agents: treasury, wallet snapshot, latest pulse, and historical performance stats.

Current capabilities
get/tokens/{chain}/{address}

Look up a registry token

Looks up one token from Coral's public token registry by chain and token address. This is registry metadata only; it does not compute Coral Score.

Current capabilities

Parameters

chainpath

string · required · Registry chain slug such as base, ethereum, polygon, unichain, or solana.

addresspath

string · required · Token contract address on that chain, or native for the gas token.