Request starts the analyze process for a table
Tables
Start AI run (asynchronous)
Start AI processing for a row in an extraction or reconciliation table. This is an asynchronous operation; use the returned run_id to check status and retrieve results.
POST
Request starts the analyze process for a table
Documentation Index
Fetch the complete documentation index at: https://docs.cloudsquid.io/llms.txt
Use this file to discover all available pages before exploring further.
This is step 2 of 3 in the async run pattern. You need a
row_id from uploading a file first. After starting the run, poll for results using the returned run_id.See the full async run pattern guide for a complete working example.What this does
Enqueues an AI job for the given row and returns immediately with arun_id. Processing happens asynchronously — the run status transitions from pending → running → done (or error).
Zero retention mode
Pass"zero_retention": true to run extraction without persisting intermediate results. Useful for privacy-sensitive workloads where you want the final output but not intermediate artifacts stored on Cloudsquid infrastructure.
Example
Python
run_id to GET /run/{run_id} to check status and retrieve results.Authorizations
Path Parameters
The name of the project
The id of the table
Body
application/json
Response
Analysis started successfully
The id of the run
