v19

latestOpenAPI 3.1.0raw.githubusercontent.com2026-06-084091267.1 KB
FindAll

Extend FindAll Run

Extend a FindAll run by adding additional matches to the current match limit.

post/v1beta/findall/runs/{findall_id}/extend

Path parameters

findall_idstring required

Headers

parallel-betastring nullable

Request body

additional_match_limitinteger required

Additional number of matches to find for this FindAll run. This value will be added to the current match limit to determine the new total match limit. Must be greater than 0.

Response

Successful Response

objectivestring required

Natural language objective of the FindAll run.

entity_typestring required

Type of the entity for the FindAll run.

generator'base' | 'core' | 'pro' | 'preview'

The generator of the FindAll run.

match_limitinteger nullable

Max number of candidates to evaluate

Example response

{
  "objective": "Find all AI companies that raised Series A funding in 2024",
  "match_conditions": [
    {
      "description": "Company must have SOC2 Type II certification (not Type I). Look for evidence in: trust centers, security/compliance pages, audit reports, or press releases specifically mentioning 'SOC2 Type II'. If no explicit SOC2 Type II mention is found, consider requirement not satisfied."
    }
  ],
  "enrichments": [
    {
      "output_schema": {
        "json_schema": {
          "additionalProperties": false,
          "properties": {
            "gdp": {
              "description": "GDP in USD for the year, formatted like '$3.1 trillion (2023)'",
              "type": "string"
            }
          },
          "required": [
            "gdp"
          ],
          "type": "object"
        }
      }
    }
  ]
}