Skip to main content
GET
/
v1
/
jobs
/
{job_id}
/
results
Fetch job results
curl --request GET \
  --url https://api.example.com/v1/jobs/{job_id}/results \
  --header 'Authorization: Bearer <token>'
{
  "job": {
    "id": "dddd1111-eeee-2222-ffff-333344445555",
    "variant_id": "11112222-3333-4444-5555-666677778888",
    "job_type": "humanization",
    "status": "completed",
    "created_at": "2026-04-21T14:15:00+00:00",
    "started_at": "2026-04-21T14:15:02+00:00",
    "completed_at": "2026-04-21T14:15:28+00:00"
  },
  "results": [
    {
      "strategy": "cdr_grafting",
      "humanized_vh": "EVQLVESGGGLVQPGGSLRLSCAAS...",
      "humanized_vl": "DIQMTQSPSSLSASVGDRVTITCRASQ...",
      "oasis_score": {
        "mean": 0.91,
        "median": 0.93
      },
      "mutations": {
        "vh": 12,
        "vl": 8
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

job_id
string<uuid>
required

Response

Completed job envelope + type-specific results.

The response is of type Response Get Job Results V1 Jobs Job Id Results Get · object.