from parallel import Parallel
client = Parallel(api_key="API Key")
run_result = client.beta.findall.result(
findall_id="findall_56ccc4d188fb41a0803a935cf485c774",
)
print(f"FindAll run {run_result.run.findall_id} result: {run_result.model_dump_json(indent=2)}"){
"run": {
"findall_id": "findall_56ccc4d188fb41a0803a935cf485c774",
"status": {
"status": "running",
"is_active": true,
"metrics": {
"generated_candidates_count": 1,
"matched_candidates_count": 1
}
},
"generator": "base",
"metadata": {},
"created_at": "2025-09-10T21:02:08.626446Z",
"modified_at": "2025-09-10T21:02:08.627376Z"
},
"candidates": [
{
"candidate_id": "candidate_7594eb7c-4f4a-487f-9d0c-9d1e63ec240c",
"name": "Cognition AI",
"url": "cognition.ai",
"match_status": "matched",
"output": {
"developing_ai_products_check": "yes",
"raised_series_a_2024_check": "yes"
},
"basis": [
{
"field": "developing_ai_products_check",
"citations": [
{
"title": "Cognition - Devin and Cognition AI",
"url": "https://cognition.ai/",
"excerpts": [
"We're the makers of Devin, a collaborative AI teammate that helps ambitious engineering teams achieve more.",
"An applied AI lab building the future of software engineering",
"Cognition"
]
}
],
"reasoning": "The search results repeatedly state that Cognition AI is an 'applied AI lab building the future of software engineering' and that they developed 'Devin AI', described as the 'world's first AI software engineer'. This directly confirms they are developing AI products.",
"confidence": "high"
},
{
"field": "raised_series_a_2024_check",
"citations": [
{
"title": "Cognition Labs Raises $21 Million Series A to Support AI Coding Products",
"url": "https://voicebot.ai/2024/04/25/cognition-labs-raises-21-million-series-a-to-support-ai-coding-products/",
"excerpts": [
"Cognition Labs Raises $21 Million Series A to Support AI Coding Products"
]
}
],
"reasoning": "The article from voicebot.ai, dated April 25, 2024, states that Founders Fund led a \"$21 million Series A investment\" for Cognition Labs. This confirms that Series A funding was raised in 2024.",
"confidence": "low"
}
]
}
]
}Retrieve the FindAll run result at the time of the request.
from parallel import Parallel
client = Parallel(api_key="API Key")
run_result = client.beta.findall.result(
findall_id="findall_56ccc4d188fb41a0803a935cf485c774",
)
print(f"FindAll run {run_result.run.findall_id} result: {run_result.model_dump_json(indent=2)}"){
"run": {
"findall_id": "findall_56ccc4d188fb41a0803a935cf485c774",
"status": {
"status": "running",
"is_active": true,
"metrics": {
"generated_candidates_count": 1,
"matched_candidates_count": 1
}
},
"generator": "base",
"metadata": {},
"created_at": "2025-09-10T21:02:08.626446Z",
"modified_at": "2025-09-10T21:02:08.627376Z"
},
"candidates": [
{
"candidate_id": "candidate_7594eb7c-4f4a-487f-9d0c-9d1e63ec240c",
"name": "Cognition AI",
"url": "cognition.ai",
"match_status": "matched",
"output": {
"developing_ai_products_check": "yes",
"raised_series_a_2024_check": "yes"
},
"basis": [
{
"field": "developing_ai_products_check",
"citations": [
{
"title": "Cognition - Devin and Cognition AI",
"url": "https://cognition.ai/",
"excerpts": [
"We're the makers of Devin, a collaborative AI teammate that helps ambitious engineering teams achieve more.",
"An applied AI lab building the future of software engineering",
"Cognition"
]
}
],
"reasoning": "The search results repeatedly state that Cognition AI is an 'applied AI lab building the future of software engineering' and that they developed 'Devin AI', described as the 'world's first AI software engineer'. This directly confirms they are developing AI products.",
"confidence": "high"
},
{
"field": "raised_series_a_2024_check",
"citations": [
{
"title": "Cognition Labs Raises $21 Million Series A to Support AI Coding Products",
"url": "https://voicebot.ai/2024/04/25/cognition-labs-raises-21-million-series-a-to-support-ai-coding-products/",
"excerpts": [
"Cognition Labs Raises $21 Million Series A to Support AI Coding Products"
]
}
],
"reasoning": "The article from voicebot.ai, dated April 25, 2024, states that Founders Fund led a \"$21 million Series A investment\" for Cognition Labs. This confirms that Series A funding was raised in 2024.",
"confidence": "low"
}
]
}
]
}Successful Response
Complete FindAll search results.
Represents a snapshot of a FindAll run, including run metadata and a list of candidate entities with their match status and details at the time the snapshot was taken.
FindAll run object.
Show child attributes
All evaluated candidates at the time of the snapshot.
Show child attributes
ID of the last event of the run at the time of the request. This can be used to resume streaming from the last event.