Skip to content
SynupAPI
Get an API key
EVENTrankings.sov_snapshot_completed

Share-of-Voice snapshot completed

Event name: rankings.sov_snapshot_completed

A Share-of-Voice snapshot was stored for a keyword (one event per keyword). Scope: location-scoped. 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.
dataobjectoptional
data.keyword_idstringoptionalSoV keyword identifier.
data.enginestringoptionalSearch engine (defaults to "google").
data.snapshot_datestringoptionalCapture date, YYYY-MM-DD.
data.sovnumberoptionalShare-of-voice value.
data.rankintegeroptionalComputed rank position.
Example delivery
{
  "event": "rankings.sov_snapshot_completed",
  "timestamp": "2026-07-15T03:15:00Z",
  "account_id": 11073,
  "location_id": "279381",
  "data": {
    "keyword_id": "84213",
    "engine": "google",
    "snapshot_date": "2026-07-15",
    "sov": 62.5,
    "rank": 3
  }
}