Skip to main content

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.

Retrieves all items from the super_liked list for a specific profile. Items are returned in descending order by creation date (newest first). Supports cursor-based pagination using the nextPageToken query parameter. Pagination:
  • Use nextPageToken from the previous response to fetch the next page
  • If hasMore is true, there are more items available on subsequent pages.
Exclusive Lists: The liked, disliked, and super_liked lists are mutually exclusive. An item can only be in one of these lists at a time. Media Assets: All items include media assets (id, title, poster_path, backdrop_path) automatically.

Parameters

NameTypeRequiredDescription
nextPageTokenstringNoOpaque token from previous page for pagination
limitintegerNoMaximum number of items to return (1-50, default: 10)

Returns

SimpleListResponse — List of super_liked items retrieved successfully
{
  "items": [
{
  "id": "string",
  "mediaType": "movie" /* enum: "movie", "tv" */,
  "title": "string",
  "poster_path": "string",
  "backdrop_path": "string",
  "createdAt": "string" /* date-time */
}
],
  "hasMore": false,
  "nextPageToken": "string"
}

Example

import { DiscovrClient } from "discovr";
import type { SimpleListResponse } from "discovr";

const discovr = new DiscovrClient("your-client-id", {
  basePath: "https://api.discovr.media",
});

// After sign-in and profile selection …
const response: SimpleListResponse = await discovr.getSuperLikedItems({ nextPageToken: "example", limit: 10 });
console.log(response);