Skip to main content
GET
/
v0
/
top_chains
Get top blockchain chains
curl --request GET \
  --url https://api.formo.so/v0/top_chains \
  --header 'Authorization: Bearer <token>'
{
  "meta": [
    {
      "name": "project_id",
      "type": "String"
    },
    {
      "name": "chain_id",
      "type": "String"
    },
    {
      "name": "visits",
      "type": "UInt64"
    },
    {
      "name": "users",
      "type": "UInt64"
    }
  ],
  "data": [
    {
      "project_id": "proj_abc",
      "chain_id": "1",
      "visits": 482,
      "users": 387
    },
    {
      "project_id": "proj_abc",
      "chain_id": "8453",
      "visits": 312,
      "users": 268
    },
    {
      "project_id": "proj_abc",
      "chain_id": "42161",
      "visits": 184,
      "users": 154
    },
    {
      "project_id": "proj_abc",
      "chain_id": "137",
      "visits": 142,
      "users": 118
    }
  ],
  "rows": 4,
  "rows_before_limit_at_least": 9
}

Documentation Index

Fetch the complete documentation index at: https://docs.formo.so/llms.txt

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

Returns the most active blockchain chains for connected wallets in the selected window.

Authorizations

Authorization
string
header
required

Workspace API key (e.g. formo_xxx). Create one in the Formo dashboard under Team Settings > API Keys.

Query Parameters

date_from
string<date>

Inclusive start date (YYYY-MM-DD). Defaults to 7 days before date_to.

date_to
string<date>

Inclusive end date (YYYY-MM-DD). Defaults to today.

limit
integer
default:50

Maximum results to return (default 50, max 1000)

Required range: 1 <= x <= 1000
offset
integer
default:0

Number of results to skip for pagination (default 0)

Required range: 0 <= x <= 100000

Response

Top chains

Analytics endpoint response. The data array contains the rows; the exact row shape depends on the endpoint. meta carries column type information for rendering, rows is the row count, and statistics holds query timing metadata.

data
object[]
meta
object[]
rows
integer
rows_before_limit_at_least
integer
statistics
object