v19

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

Ingest FindAll Run

Transforms a natural language search objective into a structured FindAll spec.

The generated specification serves as a suggested starting point and can be further customized by the user.

post/v1beta/findall/ingest

Headers

parallel-betastring nullable

Request body

objectivestring required

Natural language objective to create a FindAll run spec.

Example request

{
  "objective": "Find all AI companies that raised Series A funding in 2024"
}

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