Skip to main content
GET
/
audit-logs
cURL
curl --request GET \
  --url https://api.onchainden.com/api/v1/audit-logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "log_123",
      "action": "member.created",
      "actor": {
        "type": "<string>",
        "id": "mem_xyz",
        "name": "Admin Alice",
        "walletAddress": "0x111..."
      },
      "resourceType": "member",
      "resourceId": "mem_new1",
      "details": {},
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "cursor": "dXNlcjox",
    "hasMore": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.mls.onchainden.com/llms.txt

Use this file to discover all available pages before exploring further.

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 audit logs

data
object[]
required
pagination
object
required