Skip to main content
DELETE
/
v1
/
favorites
Remove Favorite
curl --request DELETE \
  --url https://api.thefaithapp.com/v1/favorites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --data '
{
  "media_id": 123
}
'
{
  "status": "<string>",
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.thefaithapp.com/llms.txt

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

Removes a media item from the authenticated member’s favorites.

Example request

{
  "media_id": 1
}

Request inputs

X-API-Key
string
required
Your client API key from the dashboard (Settings page).
media_id
number
required
Media ID to remove from favorites.

Response fields

status
string
required
Indicates whether the favorite removal request completed successfully.
message
string
required
Confirms whether the media was removed now or was not previously favorited.

Example response

{
  "status": "Success",
  "message": "Media removed from favorites"
}