Webhooks

Webhooks

Receive LinkedIn event notifications (messages received, connections accepted, accounts connected) delivered as signed HTTP POST callbacks to your server. Messaging and account-lifecycle events arrive in near-real-time; connection events are delivered on a poll delay.

Before you start

Creating a webhook needs an API key and at least one connected LinkedIn account. account_ids is required and must be non-empty, so there is no account-free path here. Read your ids with GET /v1/accounts; if that returns an empty list, connect an account first (see Authentication and accounts). Creating with an id you do not own returns 404 ACCOUNT_NOT_FOUND.

curl -X POST https://api.curviate.com/v1/webhooks \
  -H "Authorization: Bearer cvt_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "My message webhook",
    "source": "messaging",
    "request_url": "https://hooks.example.com/curviate",
    "account_ids": ["acc_YOUR_ACCOUNT_ID"],
    "events": ["message.received", "message.read"]
  }'

Each webhook subscribes to a single event source (messaging, user, or account_status), and every event in events must belong to that source. To receive events from more than one source, create one webhook per source.

The response includes a one-time secret, your HMAC signing key for verifying every incoming delivery. Copy it immediately. It is 64 lowercase hex characters.

{
  "object": "webhook",
  "id": "wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8",
  "source": "messaging",
  "request_url": "https://hooks.example.com/curviate",
  "account_ids": ["acc_YOUR_ACCOUNT_ID"],
  "events": ["message.received", "message.read"],
  "enabled": true,
  "secret": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8a9b0c1d2e3f4a5b6c7d8e9f0a1b2",
  "secret_prefix": "a1b2c3d4",
  "created_at": "2026-05-28T08:00:00.000Z"
}
Secret shown once

The secret is returned exactly once and is never retrievable again. Store it as CURVIATE_WEBHOOK_SECRET in your environment before discarding this response. The dashboard shows only the 8-character prefix (a1b2c3d4...) for identification.

How webhooks work

When a LinkedIn event occurs on a connected account in your workspace, Curviate dispatches an HTTP POST to every registered URL subscribed to that event type. Each delivery carries:

  • A JSON body with the event name, a delivery ID, and event data. Content events: messaging events include the full message content (text, sender, attachment metadata) and connection events carry the new contact's profile fields. Structural events: the account-status lifecycle events and initial-sync progress carry the account state only, no LinkedIn content. This distinguishes Curviate from metadata-only webhook systems: your handler receives everything it needs in one delivery, with no follow-up fetch required.
  • A Curviate-Signature header, an HMAC-SHA256 digest of the delivery body using your secret. Always verify this before processing.

Every delivery also carries account_id, event, and occurred_at inside data, whatever the source.

Delivery is at-least-once. Curviate makes up to 5 delivery attempts in total (the first plus 4 retries) with exponential backoff.

Do not deduplicate on the delivery id

The top-level id (wdl_...) identifies a delivery attempt, and a fresh one is minted on every retry. Keying on it reprocesses every retried event, which is exactly the duplicate handling it looks like it prevents. Deduplicate on the combination of event, data.account_id, and data.occurred_at, which is stable across attempts. See Delivery and retries.

Account IDs

The account_ids field is required and must be a non-empty array of acc_... IDs, each a connected LinkedIn account owned by your tenant. Deliveries are scoped to the accounts you list. To receive events from all your connected accounts, provide the full set:

{
  "account_ids": ["acc_YOUR_ACCOUNT_ID", "acc_YOUR_SECOND_ACCOUNT_ID"]
}

You can update the list at any time via PATCH /v1/webhooks/{id} without rotating the signing secret.

Listing webhooks

GET /v1/webhooks is the only endpoint that returns delivery health, so it is the call to reach for when a webhook has stopped working.

curl "https://api.curviate.com/v1/webhooks" \
  -H "Authorization: Bearer cvt_live_YOUR_API_KEY"

Each item carries everything GET /v1/webhooks/{id} returns plus three diagnostic fields the single-webhook read deliberately omits:

FieldDescription
healthok or degraded. degraded means the last delivery exhausted all 5 attempts.
last_delivery_atISO-8601 timestamp of the most recent delivery attempt, successful or not, or null when this webhook has never attempted one.
delivery_success_rate_7dPercentage (0-100) of the last 7 days' attempts that succeeded, or null when there were none in that window. A webhook that attempted and failed every time returns 0 with a non-null last_delivery_at, which is how you tell "failing" apart from "never used".

Supports limit and cursor for pagination.

Retrieving a webhook

Fetch a single webhook by id with GET /v1/webhooks/{id}. The response is the same webhook object minus the health fields above; the plaintext secret is never returned on a read, only its 8-character secret_prefix.

curl "https://api.curviate.com/v1/webhooks/wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8" \
  -H "Authorization: Bearer cvt_live_YOUR_API_KEY"

Testing a webhook

A 201 from create tells you the subscription was stored. It does not tell you your endpoint can receive a delivery, so a tunnel that died after registration, a route that does not accept POSTs, or a signature check with the wrong secret all look healthy until the first real event. POST /v1/webhooks/{id}/test closes that gap by sending a delivery on demand.

curl -X POST "https://api.curviate.com/v1/webhooks/wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8/test" \
  -H "Authorization: Bearer cvt_live_YOUR_API_KEY"
{
  "object": "webhook_test",
  "webhook_id": "wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8",
  "test_id": "wht_01J8Z3K9P0Q1R2S3T4V5W6X7Y8",
  "event": "webhook.test",
  "queued_at": "2026-06-17T10:00:00Z"
}

The 202 means queued, not delivered. What proves the subscription works is the request that then arrives at your endpoint:

{
  "id": "wdl_01J8Z3K9P0Q1R2S3T4V5W6X7Y8",
  "webhook_id": "wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8",
  "event": "webhook.test",
  "data": {
    "account_id": "acc_YOUR_ACCOUNT_ID",
    "event": "webhook.test",
    "occurred_at": "2026-06-17T10:00:00Z",
    "test_id": "wht_01J8Z3K9P0Q1R2S3T4V5W6X7Y8"
  },
  "delivered_at": "2026-06-17T10:00:00Z"
}

Match data.test_id against the test_id you were given, so you are confirming your own test rather than any delivery that happened to arrive.

Four things worth knowing:

  • It is a real delivery. Same signature construction, same custom headers, same entry in your delivery history, same retry schedule. Verifying the signature on a test delivery is a genuine check of the secret you stored.
  • webhook.test is not a real event. It is not in the event catalogue and cannot be subscribed to, so no other call will ever produce it. Ignore it in the branch that handles events, and never write it to a cache of LinkedIn data. It carries no LinkedIn content.
  • It reaches this webhook whatever it subscribes to. You do not need to add an event to test a subscription.
  • It counts against a small limit. At most 5 test deliveries per webhook per minute; over that, 429 PLATFORM_RATE_LIMIT with a Retry-After header.

A webhook that is disabled, or that targets no account, returns 400 rather than a 202 it could not honour.

Deleting a webhook

curl -X DELETE "https://api.curviate.com/v1/webhooks/wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8" \
  -H "Authorization: Bearer cvt_live_YOUR_API_KEY"
{
  "object": "webhook_deleted",
  "id": "wh_01J8Z3K9P0Q1R2S3T4V5W6X7Y8"
}

Deleting a webhook you own that is already deleted returns 200, so teardown is safe to repeat. An id that was never yours returns 404 RESOURCE_NOT_FOUND.

Errors you may hit

CodeHTTPCauseFix
INVALID_REQUEST400A missing field, a non-HTTPS request_url, an event that does not belong to source, or a malformed id. Webhook ids must be wh_ plus 26 base32 characters.Read the message, it names the field.
ACCOUNT_NOT_FOUND404An acc_... in account_ids is not owned by this workspace.Read your ids from GET /v1/accounts.
RESOURCE_NOT_FOUND404The webhook id is well-formed but not yours.Confirm it with GET /v1/webhooks.
UNAUTHORIZED401Missing or invalid API key.Send Authorization: Bearer cvt_live_<key>.
PAYMENT_REQUIRED402No active subscription.Add a seat in the dashboard.
RATE_LIMIT_TENANT429Workspace quota exceeded.Honour the Retry-After header.
PLATFORM_RATE_LIMIT429Too many test deliveries, for one webhook or across your workspace's webhooks.Honour the Retry-After header.

Full envelope shapes are in the error reference.

Next steps

COMPANY · LEGAL

Privacy Policy

Redmer Holding GmbHLast updated August 4, 2026

Who we are

Curviate is operated by Redmer Holding GmbH ("Curviate", "we", "us"), a German GmbH registered at Amtsgericht Bonn, HRB 29957, registered address Hostertstraße 16, 53332 Bornheim, Germany. Full company details are on our Imprint. We haven't appointed a statutory Data Protection Officer, since our processing doesn't reach the scale or sensitivity that requires one. Privacy questions go to privacy@curviate.com.

The two roles we play

When you create an account and use Curviate, we process your own data (identity, billing, API keys, connector authorizations). For that data, we are the controller.

When you use Curviate to act on your own connected LinkedIn account, viewing profiles, sending messages, managing engagement, that content and those contacts belong to that account and its people. You are the controller of that data; we are the processor, acting only on your instructions, under a Data Processing Agreement available on request (see below). If one of your contacts has a question about being reached through Curviate, you're who they should contact first; email privacy@curviate.com if you need help routing it.

What we collect, and why

DataWhy
Account identity (name, email, sign-in method)Create and secure your account
Your LinkedIn credentialsOperate the actions you request
LinkedIn content returned by an API callFulfil that specific request, nothing more
API keys and connector (OAuth) authorizationsAuthenticate your API, CLI, MCP, or SDK requests
Billing detailsCharge you correctly and meet our tax obligations
Usage and security logsKeep the service reliable and abuse-free
Support messagesRespond to you
Website analytics, only if you opt inUnderstand how the site is used

We rely on our contract with you, our legitimate interest in running and securing the service, our legal obligations (tax law, for example), and, for analytics, your consent. We never sell your data or use it to train models.

Where it's processed, and who else touches it

Our infrastructure runs in the EU. Hosting: Railway. Database and auth: Supabase, Ireland. Email: Resend. Payments: Stripe. Network security: a DDoS-protection provider sits in front of our app and never sees or stores request content. LinkedIn connectivity: a third-party infrastructure provider that lets us execute LinkedIn actions on your behalf. Error tracking: Sentry, Frankfurt. Product analytics: PostHog, Frankfurt. Uptime monitoring: Better Stack.

We give the current, named list of every provider above to any customer who asks: security@curviate.com.

Data processing agreement

A data processing agreement under Article 28 of the GDPR is available to business customers on request. Email security@curviate.com and we will send you the current version.

Outside the EU

All customer LinkedIn data, account data, and telemetry are processed and stored exclusively in EU regions of our sub-processors. A few providers we rely on (Stripe and Sentry, for example) are headquartered outside the EU/EEA; where that applies, it's covered by their own GDPR safeguards, typically the EU Standard Contractual Clauses.

How long we keep it

DataRetention
Account and workspace dataWhile your account is active
Closed accountDeleted immediately and irreversibly; see Deleting your account below
LinkedIn credentialsUntil you disconnect that account
LinkedIn contentNot stored; any transient cache clears within 1 hour, never indexed, never used for training
API keysUntil you revoke or rotate them
Connector (OAuth) authorizationsAccess token ~1 hour; refresh token up to ~12 months, or until you revoke it, whichever comes first
Billing recordsAs required by German tax law, currently up to 10 years
LogsA short operational window; metadata only, never message content

The 12-month figure above is a server-side credential for a connected AI agent or app. It is not a cookie and doesn't touch your browser session; see Cookies below for that. You can see and revoke every connector from Authorized applications in your dashboard at any time.

Cookies

We keep cookies to a minimum, and ask before anything beyond the essentials runs.

Strictly necessary, no consent needed:

NamePurposeExpiry
cc_cookieRemembers your cookie choice12 months
curviate-themeRemembers light/dark mode (local storage, not a cookie)Persistent
sb-*-auth-tokenKeeps you signed inWhile active; cleared on sign-out

Analytics, only if you accept:

NamePurposeExpiry
_gaGoogle Analytics: distinguishes visitors2 years
_gidGoogle Analytics: distinguishes visitors24 hours
_ga_<container id>Google Analytics: persists session state2 years

No advertising cookies, ever. Accept and reject are equally easy, and you can change your mind any time via Cookie Preferences in the footer; we won't ask again for 12 months unless something material changes. Our LinkedIn connect flow and OAuth authorization screen never set anything beyond the essentials, so no banner appears there.

Connecting an AI agent or app

Curviate is built for AI agents and automated clients as much as for people. If you connect an app like Claude, or your own code, via an API key or an OAuth connector, it can act on your workspace within the access you gave it. What it does with anything it receives back, including what it sends to its own AI model, is between you and that provider; review its practices before connecting it. Review and revoke any connection any time from your dashboard.

Deleting your account

You can delete your account yourself, from Settings in your dashboard. It takes effect immediately and it cannot be undone. There is no grace period and nothing to restore afterwards, so export anything you want to keep before you start.

Deleting removes your sign-in identity, which frees your email address for reuse straight away, along with your profile, your workspace membership and settings, your API keys, and your seats. For any connected LinkedIn account, we instruct our infrastructure provider to delete it, and your access ends immediately. Records of the connection itself can remain in our systems; email privacy@curviate.com if you need those removed as well. LinkedIn content was never stored in the first place, so there is none of it to delete.

A few things are kept on purpose. We would rather name them than claim a clean sweep:

  • Billing records, for as long as German tax law requires. They hold plan, seat count, amount, and payment references; no name, no email, no LinkedIn data.
  • A record that the deletion happened, so we can show you or a regulator that we did it.
  • A security log of which requests were made, kept for 90 days and then removed automatically. It records that a request happened, never what was in it.
  • A one-way fingerprint, if you used a free trial, that lets us recognise a repeat trial. It holds no readable identifier and cannot be read back into your name, your email, or your LinkedIn profile.

Internal workspace identifiers can also remain in operational records such as queue entries and rate-limit counters. Those carry no name, no email, and no content. If you want to know exactly what is left for your own account, ask us at privacy@curviate.com.

Your rights

You can access, correct, delete, restrict, or object to your data, port it elsewhere, and withdraw consent at any time: email privacy@curviate.com. A copy of your data in a machine-readable format is available on request. We don't make automated decisions about you that have a legal or similarly significant effect. You can also complain to a supervisory authority; ours is the Landesbeauftragte für Datenschutz und Informationsfreiheit Nordrhein-Westfalen (LDI NRW), www.ldi.nrw.de, though you're free to complain to the one in your own country instead.

Keeping it secure

Credentials are encrypted and never logged, returned, or shared. LinkedIn actions run through native, humanized flows; full detail is on our Security & Compliance page. If a breach puts your rights at risk, we'll notify the authorities and you, as GDPR requires. Curviate isn't directed at, or offered to, anyone under 16.

Changes

We'll update this page when our practices change, and reset the cookie prompt if the change is material.

Contact