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

# Add Favorite

> Adds a media item to the authenticated member's favorites.

Adds a media item to 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 add to favorites.
</ParamField>

## Response fields

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

<ResponseField name="message" type="string" required>
  Confirms whether the media was added now or was already in the member's favorites.
</ResponseField>

## Example response

```json theme={null}
{
  "status": "Success",
  "message": "Media added to favorites"
}
```
