Skip to main content
GET
/
v1beta
/
findall
/
runs
/
{findall_id}
/
result
FindAll Run Result
import requests

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

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

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

print(response.json())
{
  "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"
        }
      ]
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

findall_id
string
required

Response

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.

run
object
required

FindAll run object. FindAll run object with status and metadata.

candidates
FindAllCandidate · object[]
required

All evaluated candidates at the time of the snapshot.

last_event_id
string | null

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.