mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
2.4 KiB
2.4 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=4)
if res.object is not None:
# handle response
pass
Parameters
| Parameter | Type | Required | Description | Example |
|---|---|---|---|---|
timespan |
Optional[int] | ➖ | The timespan to retrieve statistics for the exact meaning of this parameter is not known |
4 |
Response
operations.GetStatisticsResponse
Errors
| Error Object | Status Code | Content Type |
|---|---|---|
| errors.GetStatisticsResponseBody | 401 | application/json |
| errors.SDKError | 4xx-5xx | / |