GET /friends lists your Nestri friends. GET /friends/:id fetches a specific friend by their Steam ID. Both endpoints require Bearer token authentication.
Use this file to discover all available pages before exploring further.
The friends endpoints let you access the current user’s friends list on Nestri. A friend record combines the friend’s Steam account data with their Nestri user profile when one exists. Lookups are scoped to the authenticated user’s linked Steam account — the x-nestri-steam header lets you specify which Steam account to use if more than one is linked.
List all friends associated with the authenticated user’s Steam account.
GET https://api.nestri.io/friends
This endpoint requires a valid Bearer token. The friends list is scoped to the Steam account identified by the x-nestri-steam header, or the first linked account if the header is omitted.
Returns a data object with the same Friend field structure as the list endpoint above, or a 404 if the specified Steam ID is not in the user’s friends list.