Skip to main content
GET
/
applications
/
{application_id}
Get Application By ID
curl --request GET \
  --url https://api.talentunveiled.com/api/v1/applications/{application_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "created_at": "2023-11-07T05:31:56Z",
  "candidate": {
    "first_name": "<string>",
    "last_name": "<string>",
    "phone_number": "<string>",
    "email": "jsmith@example.com"
  },
  "interview": {
    "call_id": "<string>",
    "completed_at": "<string>",
    "questions": [
      {}
    ]
  },
  "job": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "<string>"
  },
  "custom_fields": "<unknown>",
  "overall_score": 123,
  "cv_score": 123,
  "interview_score": 123,
  "hiring_recommendation": "<string>",
  "tagline_summary": "<string>"
}

Authorizations

Authorization
string
header
required

API key authentication for public API, validated against WorkOS.

Path Parameters

application_id
string<uuid>
required

Response

200 - application/json

Application serializer used by both the public API and webhook payloads.

id
string<uuid>
required
read-only
status
enum<string>
required
  • applied - Applied
  • screened - Screened
  • interviewed - Interviewed
  • shortlisted - Shortlisted
  • hired - Hired
  • rejected - Rejected
Available options:
applied,
screened,
interviewed,
shortlisted,
hired,
rejected
created_at
string<date-time>
required
read-only
candidate
object
required
interview
object
required

Interview section. Takes a JobApplication via source='*'.

job
object
required
custom_fields
any | null
required
read-only

Customer-provided custom fields submitted at application creation via the external API. Free-form JSON object — top-level must be an object; inside, any keys/values are allowed. Max 64 KB serialized.

overall_score
number<double> | null
required
read-only

Score on 0-5 scale

cv_score
number<double> | null
required
read-only

Score on 0-5 scale

interview_score
number<double> | null
required
read-only

Score on 0-5 scale

hiring_recommendation
string | null
required
read-only
tagline_summary
string | null
required
read-only