The server-side request adscapi builds when you track() a purchase and Quora is configured. Secrets and hashed values show as placeholders.
https://ads-api.quora.com/conversion
Authorization: Bearer {QUORA_TOKEN}
Content-Type: application/json{
"account_id": "{QUORA_PIXEL_ID}",
"event_name": "Purchase",
"event_time": 1739452800,
"event_id": "order_1001",
"qclid": "qclid-example-123",
"user_data": {
"em": [
"<sha256(normalized-email)>"
],
"ph": [
"<sha256(e164-phone)>"
]
},
"custom_data": {
"value": 49.99,
"currency": "USD",
"order_id": "order_1001"
}
}Verified against the library dispatcher (src/dispatchers/quora.ts). See the Quora setup guide for where to get each secret.
QUORA_PIXEL_IDQUORA_TOKENQuora activates when every secret is present. One missing key and the platform no-ops — the rest still receive the event.
| Canonical event | Quora receives |
|---|---|
page_view | Generic |
lead | GenerateLead |
signup_start | Generic |
signup | CompleteRegistration |
checkout_created | InitiateCheckout |
purchase | Purchase |
reply_generated | Generic |
upgrade_clicked | Generic |
Discover more free tools to fix your tracking
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 nowType 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 nowSearch all 26 ad platforms adscapi dispatches to — support level, required secrets, and setup docs, always in sync with the library registry.
Try it nowadscapi 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.