AcornAcorn Developers
Guides

Acorn Developer Docs

Integrate with Acorn. Track events, manage customer profiles, and power automations.

Quick Start

Send your first event with a single API call

curl -X POST https://acorn-dev-api.pscrpt.com/v1/events \
  -H "Authorization: Bearer ps_live_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "event_type": "placed_order",
    "profile": { "email": "jane@example.com" },
    "properties": {
      "order_id": "ORD-1234",
      "value": 99.99,
      "currency": "USD"
    }
  }'