Skip to main content

Coming from Tally?

Tally is shutting down its API. ChainSights provides a multi-source governance data API covering 180+ DAOs — built to be a reliable, long-term alternative.

This guide helps you migrate your existing Tally integration to ChainSights in minutes.

Endpoint Mapping

Tally GraphQLChainSights RESTNotes
query { governors { ... } }GET /v1/daosList all DAOs with GVS scores
query { governor(id) { ... } }GET /v1/daos/{space_id}DAO detail + component scores
query { delegates(orgId) { ... } }GET /v1/daos/{space_id}/delegatesTop delegates with weight tiers
query { proposals(orgId) { ... } }— (not in V1)Proposals coming in a future release

Authentication

Tally used an Api-Key header. ChainSights uses x-api-key:

x-api-key: cs_live_your_key_here

Get your API key in seconds from the API Keys Dashboard — no credit card required.

Rate Limits

Tally (Free)ChainSights (Free)
Rate Limit1 req/sec100 req/day
AuthApi-Key headerx-api-key header
FormatGraphQLREST (JSON)
CoverageGovernor contracts onlySnapshot + Governor (180+ DAOs)

Need more? Pro tier gives you 10,000 req/day.

Quick Migration Example

# Tally (shutting down)
curl -X POST https://api.tally.xyz/query \
  -H "Api-Key: YOUR_TALLY_KEY" \
  -d '{"query":"{ governors { id name } }"}'

# ChainSights (drop-in replacement)
curl https://chainsights.one/api/v1/daos \
  -H "x-api-key: cs_live_your_key_here"

That's it — one header, one GET request, real governance data.

What's Different

  • REST instead of GraphQL — simpler integration, no query building needed
  • Multi-source data — we aggregate from Snapshot, on-chain Governor contracts, and more
  • Governance scores — every DAO gets a Governance Vitality Score (GVS) with 4 components
  • Risk assessment — built-in governance risk analysis via /v1/daos/{id}/risk

Next Steps