Skip to main content
GET
/
candidates
/
{id}
/
education
Get education for a candidate
curl --request GET \
  --url https://api.gospott.com/candidates/{id}/education \
  --header 'x-api-key: <api-key>'
[
  {
    "degree": "High School",
    "id": "<string>",
    "institutionName": "<string>",
    "companyId": "<string>",
    "institutionLogoUrl": "<string>",
    "fieldOfStudy": "<string>",
    "grade": "<string>",
    "description": "<string>",
    "startDate": "2023-11-07T05:31:56Z",
    "endDate": "2023-11-07T05:31:56Z"
  }
]

Authorizations

x-api-key
string
header
required

API key for authentication. Get your API key from Settings → API Keys in your Spott dashboard.

Path Parameters

id
string
required

Response

Successfully retrieved education records

degree
enum<string>
required

The degree of the candidate

Available options:
High School,
Certificate,
Diploma,
Associate,
Professional,
Vocational,
Bachelor,
Master,
Postgraduate Diploma,
MBA,
LLM,
PhD,
Postdoctoral
id
string
required
institutionName
string
required
companyId
string
required
institutionLogoUrl
string | null
required
fieldOfStudy
string | null
required
grade
string | null
required
description
string | null
required
startDate
string<date-time> | null
required
endDate
string<date-time> | null
required