Skip to main content
GET
/
v1
/
jobs
/
{jobId}
/
criteria
/
versions
/
current
Get current criteria version
curl --request GET \
  --url https://embed.nova.dweet.com/v1/jobs/{jobId}/criteria/versions/current \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Tenant-Id: <x-tenant-id>'
{
  "version": {
    "id": "<string>",
    "version": 123,
    "status": "ACTIVE",
    "createdAt": "2023-11-07T05:31:56Z",
    "archivedAt": "2023-11-07T05:31:56Z"
  },
  "criteria": [
    {
      "id": "<string>",
      "text": "<string>",
      "importance": "MUST_HAVE",
      "order": 123
    }
  ]
}
Use this endpoint when you need the active criteria and explicit version metadata in one response.

Example response

{
  "version": {
    "id": "cmlz26ck2000awp61q9qcjcne",
    "version": 4,
    "status": "ACTIVE",
    "createdAt": "2026-02-17T12:00:00.000Z",
    "archivedAt": null
  },
  "criteria": [
    {
      "id": "crit_a1b2c3d4e5f6",
      "text": "Strong proficiency in Go for backend development",
      "importance": "MUST_HAVE",
      "order": 0
    }
  ]
}

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).

Response

Current criteria version

version
object
required
criteria
object[]
required