Skip to main content
GET
/
v1beta
/
findall
/
runs
/
{findall_id}
Python
from parallel import Parallel

client = Parallel(api_key="API Key")

run = client.beta.findall.retrieve(
    findall_id="findall_56ccc4d188fb41a0803a935cf485c774",
)

print(f"FindAll run {run.findall_id} status: {run.status.status}")
{
  "findall_id": "<string>",
  "status": {
    "status": "queued",
    "is_active": true,
    "metrics": {
      "generated_candidates_count": 0,
      "matched_candidates_count": 0
    },
    "termination_reason": "low_match_rate"
  },
  "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
FindAllRunStatus · object
required

Status object for the FindAll run.

generator
enum<string>
required

Generator for the FindAll run.

Available options:
base,
core,
pro,
preview
metadata
Metadata · object

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.