Skip to main content
POST
/
profile
/
scrobble
/
{mediaId}
/
skip
Record a skip event
const options = {
  method: 'POST',
  headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
  body: JSON.stringify({from: 10, to: 20, duration: 45, tv: {season: 1, episode: 4}})
};

fetch('https://api.discovr.media/profile/scrobble/{mediaId}/skip', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "status": "ok"
}

Documentation Index

Fetch the complete documentation index at: https://docs.discovr.media/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication.

  • Identity-tier endpoints (/profiles, /auth/session-token, /auth/session) accept a long-lived refresh token (rt_<hex>).
  • Session-tier endpoints (/pages/*, /profile/*) accept a short-lived session JWT.

SDK clients use two typed API accessors (identityApi() with the refresh token vs sessionApi() with the session JWT) — see the SDK DiscovrAuth helper.

Format: Authorization: Bearer {token}

Path Parameters

mediaId
string
required

The media ID with prefix (MV_TMDBID for movies, TV_TMDBID for TV shows)

Pattern: ^(MV|TV)_\d+$

Body

application/json
from
number
required

Starting timestamp of the skip (seconds)

Required range: 0 <= x <= 100
Example:

120

to
number
required

Ending timestamp after the skip (seconds)

Required range: 0 <= x <= 100
Example:

140

duration
number
required

Number of seconds skipped forward

Required range: x >= 0
Example:

20

tv
object

Response

Skip event recorded

status
string
required

Status of the skip event recording

Example:

"ok"