Skip to main content

Overview

One cron-scheduled task serves the partner-API side of deep-research refreshes. Partners submit people via Submit a person for deep research (partner API); this cron re-enriches them on the same schedule as the internal version.

partner-deep-research-daily

ScheduleDaily at 06:00 UTC
Cron0 6 * * *
Filetrigger/partner-deep-research-daily.ts
Fans out partner-deep-research-enrich for every partner-submitted person whose status isn’t currently running. Each enrichment updates the report and fires the research.updated Svix webhook so partners can pull the refreshed payload without polling.
What an agent should know. If you’ve subscribed to the research.updated webhook, expect a burst of events at 06:00 UTC daily — one per tracked person. If your handler can’t keep up, configure Svix to throttle delivery.No throttling at the source. Like the internal daily, this task doesn’t pace itself. A partner tracking 1000 people triggers 1000 enrichments at 06:00 UTC. Split tracking across partners or implement downstream queueing if this becomes a bottleneck.Related: List research people (partner API), Get research (partner API).