Skip to content
adscapi

Kuaishou CAPI Payload Preview

The server-side request adscapi builds when you track() a purchase and Kuaishou is configured. Secrets and hashed values show as placeholders.

Request

GET
Endpoint
https://ad.partner.gifshow.com/track/activate?callback=callback-example-123&event_type=3&event_time=1739452800000&purchase_amount=49.99

No request body — every parameter travels in the endpoint URL.

Verified against the library dispatcher (src/dispatchers/kuaishou.ts). See the Kuaishou setup guide for where to get each secret.

Required secrets

KUAISHOU_EVENT_API_TOKEN

Kuaishou activates when every secret is present. One missing key and the platform no-ops — the rest still receive the event.

Event-name mapping

Canonical eventKuaishou receives
page_viewpage_view (custom event passthrough)
lead44
signup_startsignup_start (custom event passthrough)
signup2
checkout_created14
purchase3
reply_generatedreply_generated (custom event passthrough)
upgrade_clickedupgrade_clicked (custom event passthrough)

Good to know

  • GET with query params only: no body and no auth header. The per-click callback token (the __CALLBACK__ macro value) is the credential.
  • KUAISHOU_EVENT_API_TOKEN is only the account enable-gate; it is never sent on the track/activate request.
  • event_type is an integer code (purchase is 3); payment-family types (3, 12, 13, 14, 15) require purchase_amount in yuan with two decimals.
  • event_time is a 13-digit millisecond timestamp. Success is a JSON body {"result":1}, not merely a 2xx status.

Frequently Asked Questions

Related Tools

Discover more free tools to fix your tracking

Event Payload Playground

Pick a canonical conversion event, fill the fields, and see the exact JSON payload adscapi builds — before you write a line of code.

Try it now

PII Hash Previewer

Type a raw email or phone number and see the normalized value plus its SHA-256 hash — the exact rules adscapi applies per platform. Nothing leaves the browser.

Try it now

Platform Coverage Explorer

Search all 26 ad platforms adscapi dispatches to — support level, required secrets, and setup docs, always in sync with the library registry.

Try it now

Ready to track Kuaishou conversions server-side?

adscapi is free and open source. Set your platform tokens, call track() once, and every configured Conversions API receives the event — hashed the way each platform expects.