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.

Adds a media item to the super_liked list for a specific profile. Exclusive Lists: The liked, disliked, and super_liked lists are mutually exclusive. Adding an item to the super_liked list will automatically remove it from the liked and disliked lists if it exists there. Note: If the item already exists in the super_liked list, the operation will return a success response without creating a duplicate.

Parameters

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

Returns

SuccessMessage — Item added successfully
{
  "message": "string",
  "added": "string",
  "removed": "string"
}

Example

import { DiscovrClient } from "discovr";
import type { AddSimpleListItemPayload, SuccessMessage } from "discovr";

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

// After sign-in and profile selection …
const response: SuccessMessage = await discovr.addSuperLikedItem("MV_TMDBID550");
console.log(response);