Returns one page of the events logged for a creator group’s bounty program.
Each event includes the referring member’s id and their own player id when the event’s referralCode resolved, at the time the event was recorded, to an approved member of the group; both are left out when it didn’t. This endpoint’s own read query doesn’t recheck membership status, so if that member’s approval has since changed, their id still appears here.
Results are not explicitly ordered, so do not assume the most recent event comes first. Paging starts at page 1 and returns 100 events per page by default.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters”Example
V1StGXR8_Z5jdHi6B1LiOCreator group to use for this operation. If your key is scoped to a single program, that group is always used regardless of this value; otherwise falls back to your default group when omitted.
Page of records to return
Maximum number of records to return
Responses
Section titled “ Responses ”Results matching criteria
object
ID of the creator group
Name of the creator group
Page number of response records returned
Page size used for this operation
Total number of events
object
ID of the event
Event code
Unique identier of the in game user that triggered this event
Referral code used by the player that triggered this event
ID of the member that this referralCode is associated with
Unique identifier of the in game user that the referral code is associated with
Returned when groupId does not match a creator group on your publisher account.
object
CodeNotInGroup: Creator group is private, and specified code is not linked to it
InvalidGroup: No creator group was found with the specified groupId
InvalidAuthCode: AuthCode provided is not valid
ExpiredAuthCode: AuchCode provided has expired
ReferralNexusNotFound: No Nexus was found to match the provided referral code
BountyNotFound: No bounty was found with the specified bountyId
CreatorNotFound: No creator found with the specified creatorId
InvalidEventCode: No event found with the specifed event code
const url = 'https://api.nexus.gg/v1/bounties/event?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100';const options = {method: 'GET', headers: {'X-SHARED-SECRET': 'nexus_sk_your_key_here'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.nexus.gg/v1/bounties/event?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100' \ --header 'X-SHARED-SECRET: nexus_sk_your_key_here'Example
{ "groupId": "V1StGXR8_Z5jdHi6B1LiO", "groupName": "Aurora Drift Creators", "currentPage": 1, "currentPageSize": 100, "totalCount": 15, "events": [ { "id": "2ixlNNFdJh-9scoXek80w", "eventDate": "2026-03-13T17:32:28Z", "eventCode": "lvl20", "playerId": "player_8f2c41d0", "referralCode": "popcornfrog", "memberId": "9jd7RBR_B2BZ0uWO3_lgv", "memberPlayerId": "2ixlNNFdJh-9scoXek80w" } ]}Example
{ "code": "InvalidGroup", "message": "Bounty Not found"}