Comet (Deprecated)

Deprecated. Comet is a compatibility shim for recurring Content Research Agents. It will be removed on August 3, 2026. Build new integrations against POST /v1/agents with is_recurring: true and a cadence.


Migrate to Agents

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

Do thisInstead of
POST /v1/agents with is_recurring: true + cadencePOST /v1/comet
GET /v1/agents/:id (+ /videos, /hashtags, /benchmarks, …)GET /v1/comet/:id (+ same sub-paths)
Webhook content_research_agent.run.completedcomet.run.completed (legacy; still fires until removal)

Behavior notes

  • Collection is system-managedmin_views / time_range on create are ignored. Filter at read time on /videos.
  • intent is required on Agents.
  • Recurring agents add autonomy (proposals, activity, suggest/autopilot) — see Agents → Autonomy.
  • Full schemas: OpenAPI. Full product docs: Content Research Agents.

Endpoint mapping

Legacy CometAgents equivalent
POST /v1/cometPOST /v1/agents (is_recurring: true)
GET /v1/cometGET /v1/agents?is_recurring=true
GET /v1/comet/:idGET /v1/agents/:id
PUT /v1/comet/:idPUT /v1/agents/:id
DELETE /v1/comet/:idDELETE /v1/agents/:id
GET /v1/comet/:id/videosGET /v1/agents/:id/videos
GET /v1/comet/:id/slideshowsGET /v1/agents/:id/slideshows
GET /v1/comet/:id/adsGET /v1/agents/:id/ads
GET /v1/comet/:id/creators/outliersGET /v1/agents/:id/creators/outliers
GET /v1/comet/:id/hashtagsGET /v1/agents/:id/hashtags
GET /v1/comet/:id/benchmarksGET /v1/agents/:id/benchmarks
GET /v1/comet/:id/affinityGET /v1/agents/:id/affinity
GET /v1/comet/:id/creators/:cid/similarGET /v1/agents/:id/creators/:cid/similar
GET /v1/comet/:id/analysis[/latest]GET /v1/agents/:id/analysis[/latest]
GET /v1/comet/:id/trends[/latest]GET /v1/agents/:id/trends[/latest]
GET /v1/comet/:id/soundsGET /v1/agents/:id/sounds

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

Was this page helpful?