---
title: "Get Result"
method: GET
path: "/reference_check/tasks/{task_id}"
tags: ["Reference Check"]
---

# Get Result

`GET /reference_check/tasks/{task_id}`

Retrieve reference check job status.

This allows both fetching the job result and polling for job completion.

Whilst the job is in progress its status will be either
`PENDING` or `STARTED`.

Once the job is complete its status will be `SUCCESS` and
the result can be read under the `result` key of this response.

## Path parameters

- `task_id` string, required

## Headers

- `authorization` string — Set to `Bearer <token>` to pass token for authorization.

## Response `200`

Successful Response

- TaskResponse
  - `status` 'PENDING' | 'STARTED' | 'FAILURE' | 'REVOKED' | 'SUCCESS' | 'CANCELLED', required
  - `overallTally` TallyResponse
    - `total` integer, required
    - `supporting` integer, required
    - `contradicting` integer, required
    - `mentioning` integer, required
    - `unclassified` integer, required
    - `doi` string, nullable
    - `citingPublications` integer, nullable
  - `info` TaskInfo
    - `description` string, required
    - `step` integer, required
    - `totalSteps` integer, required
  - `result` union
    - KalaParserReport
      - `source` string, nullable, required
      - `metadata` SourceMetadata, required
        - `title` string, nullable
        - `abstract` string, nullable
        - `authors` AuthorSchema[]
          - `family` string, nullable
          - `given` string, nullable
          - `orcid` string, nullable
          - `affiliation` string, nullable
          - `authorSlug` string, nullable
          - `authorName` string, nullable
          - `authorID` string, nullable
          - `authorLastKnownAffiliationId` integer, nullable
          - `authorSequenceNumber` integer, nullable
          - `affiliationSlug` string, nullable
          - `affiliationID` string, nullable
        - `journal` string, nullable
        - `volume` string, nullable
        - `date` string, nullable
        - `page` string, nullable
        - `keywords` string[]
      - `filetype` 'pdf', required
      - `citations` Citation[], required
        - `source` string, nullable, required
        - `target` string, required
        - `snippet` string, required
        - `refLocation` string, nullable
        - `section` string, nullable
    - object
  - `error` string, nullable
  - `papers` object, nullable
  - `tallies` object, nullable

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/scite/apis/scite-api.md) · [All operations](https://skmtc.net/scite/apis/scite-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/scite/scite-api/versions/9f4cba020e89/schema)
