List friends

GET
/api/portfolio/friends

Returns a list of friends, each enriched with their GitHub profile data, avatar URL, and LinkedIn profile link where available.

Response Body

application/json

curl -X GET "https://loading/api/portfolio/friends"
[
  {
    "github_username": "string",
    "linkedin_username": "string",
    "avatar": "http://example.com",
    "github_url": "http://example.com",
    "linkedin_url": "http://example.com",
    "github_name": "string",
    "github_avatar": "http://example.com"
  }
]