Returns one tier’s detail, including its revShare, together with one page of the group members currently assigned to it.
Only members with status = Approved are included. A pending or removed member assigned to this tier never appears in this list.
Each member’s codes array covers every Nexus node linked to that creator, not just their primary one. Their playerId and playerMetadata echo the member’s stored externalRef and externalMetadata, the same values you supplied when the member was created or later linked to a player.
This tier’s revShare is returned as a fraction here (0.2 for a 20% tier), not the percentage getCreatorGroupTiers returns for the same tier (20).
Authorizations
Section titled “Authorizations”Send your secret API key (nexus_sk_...) in the X-SHARED-SECRET header. Generate one in the Publisher Dashboard.
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters”Example
2ixlNNFdJh-9scoXek80wThe tier’s uuid (CreatorGroupTier.uuid).
Query Parameters
Section titled “Query Parameters”Example
V1StGXR8_Z5jdHi6B1LiOCreator group the tier belongs to. 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.
Responses
Section titled “ Responses ”Creator Group Tier matching the specified id
object
This tier’s revenue-share rate as a fraction (0 to 1), for example 0.2 for 20%. Unlike the tiers list endpoint, this value is not converted to a percentage.
Total number of approved members on this tier, not just this page.
object
Your unique identifier for this user or player, provided when the code was created or when an existing nexus was linked to one of your user accounts
Additional player information to be applied to this member (such as their in game display name)
object
The players in game display name
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.
groupId did not match a creator group on your account, or tierId did not match a tier on that group.
const url = 'https://api.nexus.gg/v1/manage/tiers/2ixlNNFdJh-9scoXek80w?groupId=V1StGXR8_Z5jdHi6B1LiO';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/manage/tiers/2ixlNNFdJh-9scoXek80w?groupId=V1StGXR8_Z5jdHi6B1LiO' \ --header 'X-SHARED-SECRET: nexus_sk_your_key_here'Example
{ "groupId": "V1StGXR8_Z5jdHi6B1LiO", "groupName": "Aurora Drift Creators", "id": "2ixlNNFdJh-9scoXek80w", "name": "Silver", "revShare": 0.2, "currentPage": 1, "currentPageSize": 100, "totalCount": 2, "members": [ { "id": "CsRKC8uD0NLtyQ0LOt8Ru", "name": "samzorz", "playerId": "player_8f2c41d0", "playerMetadata": { "displayName": "Popcorn Frog" }, "logoImage": "https://cdn.nexus.gg/CsRKC8uD0NLtyQ0LOt8Ru/images/logo-image.jpg", "profileImage": "https://cdn.nexus.gg/CsRKC8uD0NLtyQ0LOt8Ru/images/profile-image.jpg", "codes": [ { "code": "samzorz", "isPrimary": true, "isGenerated": false, "isManaged": false } ] } ]}