Skip to main content
GET
/
v1
/
watching
/
trends
Watch trends
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.

Authorizations

Authorization
string
header
required

API key. Read keys (rw_live_...) access GET endpoints. Admin keys (rw_admin_...) access all endpoints.

Query Parameters

period
string
default:monthly
date
string

Single day (YYYY-MM-DD). Overrides from/to.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2025-02-17"

from
string

Range start, inclusive (ISO 8601)

Example:

"2025-02-01T00:00:00Z"

to
string

Range end, inclusive (ISO 8601)

Example:

"2025-02-28T23:59:59Z"

Response

Trend data

period
string
required
data
object[]
required