Same listing as getAllBountyRewards, scoped to one bounty via the bountyId path segment; both operations are served by the same handler. An unknown bountyId is rejected before the reward list is built.
Only rewards of type External are ever returned here, and the same includeCompleted semantics apply: pass it with any value, including false, to include already-completed rewards.
Authorizations
Section titled “Authorizations”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Example
2ixlNNFdJh-9scoXek80wThe bounty to list rewards for.
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.
Example
trueInclude already-completed rewards in the list. Presence of this parameter, with any value including false, includes them; omit it entirely to get only undelivered rewards.
Responses
Section titled “ Responses ”Rewards successfully retrieved
object
ID of the creator group
Name of the creator group
Echoes the requested bounty.
Page number of response records returned
Page size used for this operation
Total number of referrals
object
The bounty progress reward’s id, usable with completeReward.
The member this reward is owed to.
Present only when the member has a membership in this group; omitted otherwise.
Your own catalog id for this reward.
Bounty Reward not found
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/2ixlNNFdJh-9scoXek80w/rewards?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100&includeCompleted=false';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/2ixlNNFdJh-9scoXek80w/rewards?groupId=V1StGXR8_Z5jdHi6B1LiO&page=1&pageSize=100&includeCompleted=false' \ --header 'X-SHARED-SECRET: nexus_sk_your_key_here'Example
{ "bountyId": "2ixlNNFdJh-9scoXek80w", "currentPage": 1, "currentPageSize": 100, "totalCount": 1, "rewards": [ { "id": "2ixlNNFdJh-9scoXek80w", "memberId": "CsRKC8uD0NLtyQ0LOt8Ru", "playerId": "player_8f2c41d0", "name": "In-Game Title", "externalId": "reward_mvp_title", "rewardCompleted": false, "rewardReferenceId": "ref_8f2c41d0" } ]}Example
{ "code": "InvalidGroup", "message": "Bounty Not found"}