Skip to main content
GET
/
api
/
v1
/
user
/
me
Get User Profile
curl --request GET \
  --url https://vulnix0.com/api/v1/user/me \
  --header 'api-key: <api-key>'
{
  "email": "[email protected]",
  "name": "John",
  "surname": "Smith",
  "company_name": "Example Corp",
  "address": "123 Example St, Example City",
  "receive_notification": true,
  "profile_picture_url": "https://example.com/profiles/jsmith.png"
}

Authorizations

api-key
string
header
required

A unique API Key.

Response

User profile data

email
string<email>
name
string
surname
string
company_name
string
address
string
receive_notification
boolean
profile_picture_url
string
I