Returns a member’s bounty progress in the resolved creator group, looked up by their Nexus member ID (memberId).
Once the member is resolved, this operation runs the same bounty-progress query as getMemberBountiesBySlug and getMemberBountiesByPlayerID, paginated the same way, and returns the same response shape.
A memberId that isn’t a member of the resolved group, or doesn’t exist at all, returns 404 CodeNotInGroup.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Example
CsRKC8uD0NLtyQ0LOt8RuThe member’s Nexus id, the same id value getMembers returns for each member in the group.
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
Page size.
Responses
Section titled “ Responses ”Bounty progress for specified member
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 referrals
The member’s Nexus id.
Your externalRef for this member in the resolved group. Always present in a 200 response from this operation, since the query only matches a member that already has a membership there.
object
Whether the creator has completed this bounty. Bounties will not be considered completed until the completion limit has been reached
object
object
object
object
object
object
The bounty progress reward’s id.
The bounty reward’s name.
Your own catalog id for this reward.
Whether this reward has been completed. Becomes true the first time this endpoint successfully completes it, and does not change on later calls.
The referenceId from the first completion call. Not changed by a later call to this endpoint.
object
Unique identifier for this member’s in-game user, set when linking with their Nexus account or generating the code
A group member’s code which is used as their storefront URL and when creating transactions or referrals
object
Indicates whether or not this is the primary code for this member.
Indicates whether or not this is a code that you generated.
Indicates whether or not this is a code that you manage. Once a code that you generated has been linked to a Nexus account, it will no longer be considered managed.
Bad request
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/member/id/CsRKC8uD0NLtyQ0LOt8Ru?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100';const options = {method: 'GET', headers: {'X-SHARED-SECRET': 'nexus_pk_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/member/id/CsRKC8uD0NLtyQ0LOt8Ru?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100' \ --header 'X-SHARED-SECRET: nexus_pk_your_key_here'Example
{ "groupId": "V1StGXR8_Z5jdHi6B1LiO", "groupName": "Aurora Drift Creators", "currentPage": 1, "currentPageSize": 100, "totalCount": 1, "memberId": "CsRKC8uD0NLtyQ0LOt8Ru", "playerId": "player_8f2c41d0", "progress": "- id: Hd6zrUid8ulc0boV5Z5ws\n completed: false\n completionCount: 1\n lastProgressCheck: 2026-03-13T17:32:28Z\n currentObjectiveGroupId: 4Qh1z9nS0mQY0vHqPbT3d\n currentObjectives:\n - id: T4h8O0p2aOakYG0WhBTEN\n completed: false\n count: 1\n objective:\n id: m-OWRxs8qnSSny4THjT1R\n name: Refer a player that reaches level 20\n count: 5\n condition: AND\n completedObjectives: []\n member:\n id: CsRKC8uD0NLtyQ0LOt8Ru\n playerId: player_8f2c41d0\n name: Popcorn Frog\n codes:\n - code: popcornfrog\n isPrimary: true\n isGenerated: false\n isManaged: false\n bounty:\n id: 2ixlNNFdJh-9scoXek80w\n name: Refer 5 players that reach level 20\n limit: 5"}Example
{ "code": "InvalidGroup", "message": "Bounty Not found"}