Sofa
Dashboard

Get personalized recommendations

Fetch personalized title recommendations based on the user's library and watch history.

GET
/dashboard/recommendations
better-auth.session_token<token>

Better Auth session cookie

In: cookie

Response Body

application/json

curl -X GET "http://localhost:3000/api/v1/dashboard/recommendations"
{
  "items": [
    {
      "id": "string",
      "tmdbId": 0,
      "type": "movie",
      "title": "string",
      "posterPath": "string",
      "posterThumbHash": "string",
      "releaseDate": "string",
      "firstAirDate": "string",
      "voteAverage": 0
    }
  ]
}