> ## 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.

# Remove Favorite

> Removes a media item from the authenticated member's favorites.

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

## Example request

```json theme={null}
{
  "media_id": 1
}
```

## Request inputs

<ParamField header="X-API-Key" type="string" required>
  Your client API key from the dashboard (Settings page).
</ParamField>

<ParamField body="media_id" type="number" required>
  Media ID to remove from favorites.
</ParamField>

## Response fields

<ResponseField name="status" type="string" required>
  Indicates whether the favorite removal request completed successfully.
</ResponseField>

<ResponseField name="message" type="string" required>
  Confirms whether the media was removed now or was not previously favorited.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Media removed from favorites"
}
```
