mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 12:47:44 +00:00
2.2 KiB
2.2 KiB
Statistics
(statistics)
Overview
API Calls that perform operations with Plex Media Server Statistics
Available Operations
- get_statistics - Get Media Statistics
get_statistics
This will return the media statistics for the server
Example Usage
import plex_api
s = plex_api.PlexAPI(
access_token="<YOUR_API_KEY_HERE>",
x_plex_client_identifier='Postman',
)
res = s.statistics.get_statistics(timespan=411769)
if res.object is not None:
# handle response
pass
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
timespan |
Optional[int] | ➖ | The timespan to retrieve statistics for the exact meaning of this parameter is not known |
Response
operations.GetStatisticsResponse
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| errors.GetStatisticsResponseBody | 401 | application/json |
| errors.SDKError | 4xx-5xx | / |