action trakt_get_friends { label: "Get friends" description: "#### 🔓 OAuth Optional ✨ Extended Info\n\nReturns all friends for a user including when the relationship began. Friendship is a 2 way relationship where each user follows the other." provider: trakt method: GET path: "/users/{id}/friends" encoding: json input: { type: "object" properties: { id: { type: "string" } "trakt-api-key": { type: "string" } "trakt-api-version": { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }