Skip to content
SynupAPI
Get an API key
EVENTidea_pipeline.scrape_completed

AI idea scrape completed

Event name: idea_pipeline.scrape_completed

A website-analysis scrape job for idea generation completed. Scope: local or social (see the top-level scope field). Delivered as a signed HTTP POST to your Webhooks URL.

Every delivery is signed. Verify X-Synup-Signature before processing — see Synup Webhooks.

Payload

NameTypeRequiredDescription
eventstringoptionalDotted event name.
timestampstringoptionalISO-8601 UTC time the event was emitted.
account_idintegeroptionalSynup account the event belongs to.
location_idstringoptionalNumeric string for location-scoped events; null for brand-scoped events.
scopestringoptionalAI post-idea events only: "local" or "social".
dataobjectoptional
data.scrape_job_idstringoptionalScrape job id.
data.pipeline_status_idstringoptionalAssociated pipeline-status id.
data.site_urlstringoptionalThe scraped URL (completed only).
data.social_profile_idstringoptionalBrand id (scope:"social" only).
Example delivery
{
  "event": "idea_pipeline.scrape_completed",
  "timestamp": "2026-07-15T06:45:00Z",
  "account_id": 19598,
  "location_id": "279381",
  "scope": "local",
  "data": {
    "scrape_job_id": "scrape-441",
    "pipeline_status_id": "ps-77",
    "site_url": "https://acmecoffee.com"
  }
}