Deep research: KYC and KYB checks
Know Your Customer (KYC) and Know Your Business (KYB) checks combine discovery and document retrieval across sources that have no API: company registries, sanctions lists, regulator portals, and news. An agent searches for the right records, opens them, extracts the facts, and downloads supporting documents into its sandbox. Documents the agent downloads land in the run sandbox. Retrieve them through the Downloads API; see managing files for the full retrieval workflow. When you’re ready to keep sensitive inputs (account numbers, dates of birth) out of the task text, move them to variables.Monitoring prices and changes
Pricing and inventory live on sites that change their markup, throw interstitials, and hide numbers behind JavaScript. An agent renders each page, dismisses what’s in the way, and returns the same fields every run, so you can diff against the last result and alert on movement. To run the check on a cron, deploy the trigger as a Function and store each run’sresult so you can diff successive observations.
Scale to 200+ portals
When you need the same task across hundreds of portals, supplier sites, or government systems, writing one script per target stops scaling: each portal has its own layout and changes on its own schedule. Instead, define one agent whose prompt describes the goal abstractly, then run it across every portal by varying the inputs. Each portal gets its own browser session, so runs execute concurrently up to your concurrency limit. The same agent handles every portal because the prompt reads the URL and credentials from the task; track each run to completion with Get a run. Once you have a QA setup, move the credentials into variables so they no longer sit inline in the task.Next steps
Integrating agents
Trigger runs, pass variables, and track them to completion.
Optimizing agents
Tune the prompt and output to make runs faster and more reliable.
Managing files
Retrieve documents an agent downloads during a run.
Run an agent
Full request and response reference for a run.