OuterCircle
  • General
    • πŸ”΅OuterCircle
    • πŸ‘€Initial Vision
    • πŸ§‘β€πŸ’»Team
    • πŸ•ŠοΈLive Updates
    • πŸ—ΊοΈRoadmap
  • Developers
    • 🀝Onchain interactions
      • Proposals
    • πŸ€–Indexer API
      • Base Endpoints
      • DAO
      • Followers
  • DAO Builders
Powered by GitBook
On this page
  • Network-specific
  • Returns aggregated DAO Followers
  • Follow DAO
  1. Developers
  2. Indexer API

Followers

Followers-related API endpoints

PreviousDAO

Last updated 2 years ago

Network-specific

network is required.

See the possible network options in .

Returns aggregated DAO Followers

GET api.outercircle.io/{network}/dao/{address}/followers

Example:

Path Parameters

Name
Type
Description

network*

String

Network name

address

String

DAO address

Query Parameters

Name
Type
Description

offset*

Int

Pagination offset

limit*

Int

Pagination limit (max 20)


{
  "total": 11, // Total Entities matches the filter
  "offset": 0, // Provided offset
  "limit": 10, // Provided limit
  "items": [
    // Follower
    {
      // Follower Address
      "address": "0xa2f6a625b3d1b4f0C58E5C1652898D160B8588D0"
    }
    ...
  ]
}

Follow DAO

POST api.outercircle.io/{network}/dao/{address}/follow

This method is private. Request the access by messaging us.

Path Parameters

Name
Type
Description

network*

String

Network name

address*

String

DAO to follow address

Headers

Name
Type
Description

Auth-Hash*

String

Hash of account following DAO

Auth-Signature*

String

Signature of account following DAO

Request Body

Name
Type
Description

account*

String

Address of account following DAO

πŸ€–
Indexer API
https://api.outercircle.io/goerli/dao/0x1657943E9eA125000581f5E1854ebE3aAae5e012/followers?offset=0&limit=10