Profile
The profile endpoint is public and does not require a Pro account.
GET /profile/{username}
Public endpoint. Provides details about the user account.
URL params
username: string
                    The username for the account.
Endpoint Example
Below is a live example that can be copy and pasted.
curl https://sandbox.sellinpublic.com/api/v0/profile/sandbox -u "demo:sip_api_sand_01234demo56789_key"
                    Below is the expected result from that cURL call:
{
  "status": "success",
  "messages": [],
  "meta": {},
  "data": {
    "user_id": 2,
    "username": "sandbox",
    "display_name": "Sandbox",
    "bio": "",
    "profile_image_url": "https://sandbox.sellinpublic.com/media/alphabet/s.png"
  }
}