Get User's public profile by username

Endpoint allows to get user's public profile by Username

Get public profile

GET https://api.whisk.com/v2/profile/by-username/{username}

Method provides all data on existing user's public profile by username

Path Parameters

NameTypeDescription

username*

String

Requested username

Headers

NameTypeDescription

Authorization*

String

User Access token to authorize the API usage. For more information, see Authentication

{
  "profile": {
    "id": "string",
    "first_name": "string",
    "last_name": "string",
    "username": "string",
    "picture": {
      "url": "string",
      "width": 0,
      "height": 0,
      "selection": {
        "x": 0,
        "y": 0,
        "width": 0,
        "height": 0
      }
    }
  }
}s

Sample request and response

Last updated