SDK Quickstart

Use this guide to connect your app or game to Trakqio and send your first tracked events.

1. Basic Flow

  1. Your app includes the Trakqio SDK.
  2. The SDK generates or reads a device / app user identifier.
  3. Install, session, and event payloads are sent to Trakqio API endpoints.
  4. Trakqio attributes traffic and stores performance data.
  5. Optional callbacks are sent to advertisers, offerwalls, or rewards systems.

2. Required Values

3. Example Request

POST /api/v1/event.php
Content-Type: application/json

{
  "app_id": 12,
  "api_key": "YOUR_API_KEY",
  "device_id": "device_abc_123",
  "event_name": "signup_complete",
  "event_value": 1,
  "event_revenue": 0,
  "platform": "android",
  "event_time": "2026-03-16 13:00:00"
}

4. Recommended First Events

Continue to API Reference →