Skip to main content

Get User Subscriptions

GET 

/me/subscribed

Get all mod's the authenticated user is subscribed to. Successful request will return an array of Mod Objects. We recommended reading the filtering documentation to return only the records you want.

info

If the parent game has platform filtering enabled, this endpoint supports the targeting a platform request header to return the mods that are approved for the requested platform. Note: To target a platform for this endpoint, you MUST also include the game_id filter for the game that has cross-platform filtering enabled.

Request

Sorting filters

Parameters

    name string

    Sort by name in alphabetical order. For example _sort=name would return mods from A-Z.

    date_live string

    Sort by the date they went live. For example _sort=-date_live would return the most recently live mods.

    date_updated string

    Sort by the date they were last updated. For example _sort=-date_updated would return the most recently updated mods.

    submitted_by string

    Sort by the creators ID. For example _sort=submitted_by would return mods from creators who have been registered the longest.

    downloads_today string

    Sort by the number of downloads in the last 24hours. For example _sort=-downloads_today would return the most popular mods from the last 24hours based on the number of mod downloads.

    downloads_total string

    Sort by the total number of downloads. For example _sort=-downloads_total would return the most popular mods based on the number of downloads.

    subscribers_total string

    Sort by the total number of subscribers. For example _sort=-subscribers_total would return the most popular mods based on number of subscribers.

See here for more details about using the _sort query parameter.

Responses

Request Successful