Skip to main content
GET
/
profiles
/
{publicIdentifier}
Get Profile Details
curl --request GET \
  --url https://api.ever.day/profiles/{publicIdentifier} \
  --header 'x-api-key: <api-key>'
{
  "id": "abc123",
  "email": "[email protected]",
  "publicIdentifier": "john-doe-1234",
  "firstName": "John",
  "lastName": "Doe",
  "fullName": "John Doe",
  "certifications": [
    {
      "id": "<string>",
      "name": "<string>",
      "authority": "<string>",
      "field": "<string>",
      "description": "<string>",
      "date": "2023-11-07T05:31:56Z"
    }
  ],
  "educations": [
    {
      "id": "<string>",
      "degree": "<string>",
      "school": "<string>",
      "field": "<string>",
      "grade": "<string>",
      "startDate": "2023-11-07T05:31:56Z",
      "endDate": "2023-11-07T05:31:56Z",
      "finished": true,
      "description": "<string>"
    }
  ],
  "workHistory": [
    {
      "id": "<string>",
      "startDate": "2023-11-07T05:31:56Z",
      "endDate": "2023-11-07T05:31:56Z",
      "occupation": "<string>",
      "company": "<string>",
      "description": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Include your API key in the x-api-key header to authenticate requests. Each organisation is provided with a unique API key. If your key is lost or compromised, contact support to request a new one.

Path Parameters

publicIdentifier
string
required

The unique identifier of the profile.

Response

Profile details retrieved successfully.

id
string

The unique identifier of the profile.

Example:

"abc123"

email
string

The user's email address.

publicIdentifier
string

A unique public identifier for the user.

Example:

"john-doe-1234"

firstName
string

The user's first name.

Example:

"John"

lastName
string

The user's last name.

Example:

"Doe"

fullName
string

The user's full name.

Example:

"John Doe"

certifications
object[]

List of certifications obtained by the user.

educations
object[]

List of educational backgrounds.

workHistory
object[]

Work experience history.