Skip to main content
GET
/
groups
cURL
curl --request GET \
  --url https://api.onchainden.com/api/v1/groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "grp_123",
      "name": "Finance Team",
      "members": [
        {
          "id": "mem_123",
          "name": "Alice",
          "type": "user",
          "walletAddress": "0xabc...",
          "createdAt": "2023-11-07T05:31:56Z",
          "updatedAt": "2023-11-07T05:31:56Z"
        }
      ],
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "cursor": "<string>",
    "hasMore": true
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header.

Query Parameters

cursor
string

Pagination cursor from previous response

limit
integer
default:20

Number of results per page (default 20, max 100)

Required range: 1 <= x <= 100

Response

List of groups

data
object[]
pagination
object