Followings v2
Reference for the Followings v2 endpoints on Roblox.
Base URL: https://followings.roblox.com
Endpoints
Section titled “Endpoints”| Method | Path | Name |
|---|---|---|
GET | /v2/users/:userId/universes | getUsersUseridUniverses |
getUsersUseridUniverses
Section titled “getUsersUseridUniverses”GET /v2/users/:userId/universes
Gets all universes followed by a user.
Usage
import { fetchApi } from 'rozod';import { getUsersUseridUniverses } from 'rozod/lib/endpoints/followingsv2';
const data = await fetchApi(getUsersUseridUniverses, { userId: /* integer */});Parameters
Section titled “Parameters”| Name | Type | Required | Description |
|---|---|---|---|
userId | integer | Yes | The user ID. |
Response
Section titled “Response”| Field | Type | Description |
|---|---|---|
followerType | `“Invalid" | "User”` |
followerId | number | |
sourceType | `“Invalid" | "Universe”` |
followedSources | string |
Errors
Section titled “Errors”| Status | Description |
|---|---|
| 401 | 0: Authorization has been denied for this request. |
| 403 | User is not authorized for this action. |