Skip to content

Engagement Payouts v1

Reference for the Engagement Payouts v1 endpoints on Roblox.

Base URL: https://engagementpayouts.roblox.com

MethodPathName
GET/v1/universe-payout-historygetUniversePayoutHistory

GET /v1/universe-payout-history

Gets the engagement payout history for a specific universe and a given date range, specified by start and end dates.

Usage
import { fetchApi } from 'rozod';
import { getUniversePayoutHistory } from 'rozod/lib/endpoints/engagementpayoutsv1';
const data = await fetchApi(getUniversePayoutHistory, {
universeId: /* integer */,
startDate: /* string */,
endDate: /* string */
});
NameTypeRequiredDescription
universeIdintegerYesThe ID of the universe in question.
startDatestringYesThe first date in the range, specified as yyyy-MM-dd.
endDatestringYesThe last date in the range, specified as yyyy-MM-dd.
FieldTypeDescription
engagementScorenumber
payoutInRobuxnumber
payoutTypestring
eligibilityTypestring
StatusDescription
4001: InvalidUniverseId
2: InvalidStartDate
3: InvalidEndDate
4: InvalidDateRange
5: Forbidden
6: TooManyDays
4010: Authorization has been denied for this request.