Orbit (Deprecated)

Deprecated. Orbit is a compatibility shim for one-shot Content Research Agents. It will be removed on August 3, 2026. Build new integrations against POST /v1/agents with is_recurring: false.


Migrate to Agents

Orbit and Agents share the same underlying resource. Your orbit_id is the agent id — reads work on either path during the migration window.

Do thisInstead of
POST /v1/agents with is_recurring: falsePOST /v1/orbit
GET /v1/agents/:id (+ /videos, /analysis, …)GET /v1/orbit/:id (+ same sub-paths)
Webhook content_research_agent.run.completedorbit.run.completed (legacy; still fires until removal)

Behavior notes

  • Collection is system-managedmin_views / time_period on create are ignored. Filter at read time on /videos.
  • intent is required on Agents (synthesized from keywords if you omit it on legacy Orbit).
  • Full schemas: OpenAPI. Full product docs: Content Research Agents.

Endpoint mapping

Legacy OrbitAgents equivalent
POST /v1/orbitPOST /v1/agents (is_recurring: false)
GET /v1/orbitGET /v1/agents?is_recurring=false
GET /v1/orbit/:idGET /v1/agents/:id
GET /v1/orbit/:id/videosGET /v1/agents/:id/videos
GET /v1/orbit/:id/slideshowsGET /v1/agents/:id/slideshows
GET /v1/orbit/:id/adsGET /v1/agents/:id/ads
GET /v1/orbit/:id/creators/outliersGET /v1/agents/:id/creators/outliers
GET /v1/orbit/:id/analysis[/latest]GET /v1/agents/:id/analysis[/latest]
GET /v1/orbit/:id/trends[/latest]GET /v1/agents/:id/trends[/latest]
GET /v1/orbit/:id/soundsGET /v1/agents/:id/sounds

Pricing is unchanged: $0.50 per run (+$1.00 with Data Intelligence). Reads are free. See Billing.

Was this page helpful?