Skip to main content
GET
/
v1beta
/
findall
/
runs
/
{findall_id}
Retrieve Findall Run Status
import requests

url = "https://api.parallel.ai/v1beta/findall/runs/{findall_id}"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.json())
{
  "findall_id": "<string>",
  "status": {
    "status": "queued",
    "is_active": true,
    "metrics": {
      "generated_candidates_count": 0,
      "matched_candidates_count": 0
    },
    "termination_reason": "<string>"
  },
  "generator": "base",
  "metadata": {},
  "created_at": "<string>",
  "modified_at": "<string>"
}

Authorizations

x-api-key
string
header
required

Headers

parallel-beta
string | null

Path Parameters

findall_id
string
required

Response

Successful Response

FindAll run object with status and metadata.

findall_id
string
required

ID of the FindAll run.

status
object
required

Status object for the FindAll run. Status object for FindAll run.

generator
enum<string>
required

Generator for the FindAll run.

Available options:
base,
core,
pro,
preview
metadata
object | null

Metadata for the FindAll run.

created_at
string | null

Timestamp of the creation of the run, in RFC 3339 format.

modified_at
string | null

Timestamp of the latest modification to the FindAll run result, in RFC 3339 format.