Get POAP holders
The POAP holders endpoint allows you to retrieve a list of users (holders) who own POAPs (Proof of Attendance Protocol tokens) associated with a specific event.
Request
Invocation
const result = await client.poaps.holders({
eventId: "EVENT_ID",
});
query PoapHolders($request: PoapHoldersQueryRequest!) {
result: poapHolders(request: $request) {
items {
...Profile
}
pageInfo {
...PaginatedResultInfo
}
}
}
Response
Paginated result with Profiles
Updated about 1 month ago