Plex
Get Plex Home Data
Server
Media
Butler
Plex
Library
- GETGet Hash Value
- GETGet Recently Added
- GETGet All Libraries
- GETGet library details
- DELDelete library section
- GETGet library items
- GETGet all media of library
- GETRefresh Metadata Of The Library
- GETSearch library
- GETGet Genres of library media
- GETGet Countries of library media
- GETGet Actors of library media
- GETSearch All Libraries
- GETGet Media Metadata
- GETGet Items Children
- GETGet Top Watched Content
- GETGet On Deck
Watchlist
Playlists
Authentication
Sessions
Plex
Get Plex Home Data
Retrieves the home data for the authenticated user, including details like home ID, name, guest access information, and subscription status.
GET
/
home
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(accessToken: "<YOUR_API_KEY_HERE>");
var res = await sdk.Plex.GetHomeDataAsync();
// handle response
{
"id": 1841489,
"name": "Blindkitty38's home",
"guestUserID": 58815432,
"guestUserUUID": "f3df4e01bfca0787",
"guestEnabled": true,
"subscription": true
}
Authorizations
Plex Authentication Token
Response
200
application/json
Home Data
The response is of type object
.
using LukeHagar.PlexAPI.SDK;
using LukeHagar.PlexAPI.SDK.Models.Components;
var sdk = new PlexAPI(accessToken: "<YOUR_API_KEY_HERE>");
var res = await sdk.Plex.GetHomeDataAsync();
// handle response
{
"id": 1841489,
"name": "Blindkitty38's home",
"guestUserID": 58815432,
"guestUserUUID": "f3df4e01bfca0787",
"guestEnabled": true,
"subscription": true
}