Skip to content

Lists every creator group on your publisher account, each with its id, name, and default flag.

The response is not paginated: every group your publisher owns comes back in one call, regardless of how many there are.

This endpoint takes no groupId parameter and ignores an API key’s own group scope. It always lists across the whole publisher account, not just the key’s assigned group.

A group’s id here is the same value other endpoints call groupId, use it there when your program runs more than one creator group.

NOTE: This method uses a secret (nexus_sk_...) API key and should never be called from or embedded into the gaming client. These routes should ONLY be accessed from your back-end services.

X-SHARED-SECRET
required
stringheader

Send your secret API key (nexus_sk_...) in the X-SHARED-SECRET header. Generate one in the Publisher Dashboard.

Every creator group on your publisher account. There is no paging: all groups come back in a single call.

Media typeapplication/json
object
groups
Array<object>
object
name
string
id
string
isDefault

Specifies whether this is the default group for your creator program. The default group will be used in all API requests unless a groupId query parameter is specified

boolean

Bad input parameter

GET
/manage/groups
curl --request GET \
--url https://api.nexus.gg/v1/manage/groups \
--header 'X-SHARED-SECRET: nexus_sk_your_key_here'
Example
{
"groups": [
{
"name": "Aurora Drift Creators",
"id": "V1StGXR8_Z5jdHi6B1LiO",
"isDefault": true
}
]
}