curl --request GET \
--url https://api.rewind.rest/v1/watching/trends \
--header 'Authorization: Bearer <token>'{
"period": "monthly",
"data": [
{
"period": "2026-01",
"count": 8
},
{
"period": "2026-02",
"count": 10
},
{
"period": "2026-03",
"count": 9
}
]
}Returns weekly or monthly watch counts. Supports date filtering via from/to params.
curl --request GET \
--url https://api.rewind.rest/v1/watching/trends \
--header 'Authorization: Bearer <token>'{
"period": "monthly",
"data": [
{
"period": "2026-01",
"count": 8
},
{
"period": "2026-02",
"count": 10
},
{
"period": "2026-03",
"count": 9
}
]
}Documentation Index
Fetch the complete documentation index at: https://docs.rewind.rest/llms.txt
Use this file to discover all available pages before exploring further.
API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.
Single day (YYYY-MM-DD). Overrides from/to.
^\d{4}-\d{2}-\d{2}$"2025-02-17"
Range start, inclusive (ISO 8601)
"2025-02-01T00:00:00Z"
Range end, inclusive (ISO 8601)
"2025-02-28T23:59:59Z"