🚀Quick Start

Get your API keys

Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.

Contact us to generate an API Key and get access to the world's richest DAO data lake.

All requests must contain your API key in the x-daohq-api-key header.

Make your first request

To make your first request, send an authenticated request to the /daos endpoint.

A simple first request

GET https://api.daohq.co/data/daos

All requests must include your API key in the x-daohq-api-key header.

Headers

[
  {
    "_id": "6204183eec11c39c6fcd97ad",
    "name": "KlimaDAO",
    ...
  },
  {
    "_id": "62c4cd050eb136b9b05fa561", 
    "name": "$DOG DAO"
    ...
  },
  ...
]

Here's how the request might look in common languages:

curl https://api.daohq.co/data/daos
    -H x-daohq-api-key:your_api_key

Last updated