GET
/
v1.0
/
{company_id}
/
candidates
/
{candidate_id}
curl --request GET \
  --url https://api.hirehive.com/v1.0/{company_id}/candidates/{candidate_id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "full_name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "phone_number": "<string>",
    "title": "<string>",
    "company": "<string>",
    "location": {
      "address": "<string>",
      "country": {
        "name": "<string>",
        "code": "<string>"
      }
    },
    "image_url": "<string>",
    "tags": [
      {
        "id": "<string>",
        "name": "<string>"
      }
    ],
    "rating": 123,
    "application_ids": [
      "<string>"
    ],
    "social_profiles": [
      {
        "type": "linked_in",
        "uri": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_id
string
required
candidate_id
string
required

Response

200
application/json
data
object