Skip to main content
GET
/
v1
/
jobs
/
{jobId}
/
applications
/
{applicationId}
/
score
Get latest score by application
curl --request GET \
  --url https://embed.nova.dweet.com/v1/jobs/{jobId}/applications/{applicationId}/score \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Tenant-Id: <x-tenant-id>'
{
  "scoringJob": {
    "id": "<string>",
    "criteriaVersionId": "<string>",
    "jobId": "<string>",
    "applicationId": "<string>",
    "status": "pending",
    "isRescore": true,
    "score": 123,
    "assessment": {
      "verdict": "<string>",
      "strengths": [
        "<string>"
      ],
      "concerns": [
        "<string>"
      ],
      "interviewFocus": [
        "<string>"
      ]
    },
    "errorCode": "UNAUTHORIZED",
    "errorMessage": "<string>",
    "queuedAt": "2023-11-07T05:31:56Z",
    "startedAt": "2023-11-07T05:31:56Z",
    "completedAt": "2023-11-07T05:31:56Z",
    "failedAt": "2023-11-07T05:31:56Z"
  }
}
Retrieve the latest scoring result for an application using just the job ID and application ID. No need to store or look up Nova’s scoringJobId.

When to Use

Use this endpoint when:
  • Your integration does not persist Nova’s scoringJobId
  • You want the most recent score after a rescore
  • You are building a dashboard that shows scores by application
If you have the scoringJobId from the initial scoring response or webhook, use Get Scoring Job instead for a direct lookup.

How It Works

The endpoint returns the most recent scoring job for the given application, ordered by submission time. If the application has been rescored, you get the latest result. If no scoring job exists for the application, the endpoint returns a 404 error with code APPLICATION_NOT_FOUND.

Authorizations

Authorization
string
header
required

Use Authorization: Bearer sk_test_* or Authorization: Bearer sk_live_*.

Headers

X-Tenant-Id
string
required

Your customer identifier. Tenants are auto-provisioned on first request.

Path Parameters

jobId
string
required

Your job identifier (external ID).

applicationId
string
required

Your application identifier (external ID).

Response

Latest scoring job for this application

scoringJob
object
required