Followers
Followers-related API endpoints
Network-specific
network is required.
See the possible network options in Indexer API.
Returns aggregated DAO Followers
GET api.outercircle.io/{network}/dao/{address}/followers
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
Last updated