Classic APIs
ClassicDevelopApi
groupUniverses

groupUniverses

Gets a list of universes for the given group.

Parameters

NameTypeDescription
groupIdGroupIdThe ID of the group to get universes from.
isArchived?booleanWhether or not to return archived games.
limit?10 | 25 | 50 | 100The number of results per request.
sortOrder?SortOrderThe order to sort the results in. Sorted by universeId.
cursor?stringThe paging cursor for the previous or next page.

Example

const { data: universes } = await ClassicDevelopApi.groupUniverses({ groupId: 5850082 }); 

Example Data

[
  {
    id: 1651554338,
    name: "Ninjas Unleashed: Legion",
    description: "No secret projects here\r\nScriptor/Game Designer - NamelessGuy2005\r\nBuilder/Animator - Flaroh\r\n",
    isArchived: false,
    rootPlaceId: 4857762148,
    isActive: false,
    privacyType: "Private",
    creatorType: "Group",
    creatorTargetId: 5850082,
    creatorName: "MightyPart Games",
    created: 2020-04-04T13:17:08.120Z,
    updated: 2020-04-20T15:37:55.803Z,
  },
] 

Endpoint

GET /v1/groups/{groupId}/universes