v19

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

Add Enrichment to FindAll Run

Add an enrichment to a FindAll run.

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

Path parameters

findall_idstring required

Headers

parallel-betastring nullable

Request body

processorstring

Processor to use for the task.

Example request

{
  "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"
    }
  }
}

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"
        }
      }
    }
  ]
}