Skip to main content
POST
/
profile
/
disliked
TypeScript
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.addDislikedItem("MV_550");
console.log(response);
{
  "message": "Item added to disliked list successfully",
  "added": "disliked"
}

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}

Body

application/json

The media item to add. Use the full Discovr media ID — MV_<id> for movies, TV_<id> for TV shows.

mediaId
string
required

Full media ID — MV_<tmdbId> for movies, TV_<tmdbId> for TV shows (e.g., MV_550)

Example:

"MV_550"

Response

Item was already disliked — no change made.

Confirmation response with the action taken. For exclusive lists (liked/disliked/super_liked), also includes added (which list the item was added to) and optionally removed (which list it was removed from).

message
string
required

Success message

Example:

"Item added successfully"

added
string

The list type the item was added to (for exclusive lists)

Example:

"liked"

removed
string | null

The list type the item was removed from, if any (for exclusive lists)

Example:

"disliked"