Skip to main content

Introduction

Welcome to the TRACKTICS Developer Documentation.

TRACKTICS is a sports performance platform that combines real-time GPS tracking with a cloud backend to give coaches and clubs instant insight into player movement during training sessions and matches.

What you'll find here

This documentation is structured into two main areas:

  • Concepts — How the platform is organized: clubs, teams, players, trackers, and sessions. Start here to understand the data model before working with the API.
  • API Reference — Detailed descriptions of every endpoint, including request and response formats, authentication, and pagination.

Accessing the platform

TRACKTICS is a managed service. To get started you need a club account. Contact info@tracktics.com to request access. Once your club is set up, you will receive credentials to authenticate against the API.

API overview

All API endpoints follow RESTful conventions and return JSON. Authentication uses Firebase JWTs passed as a Bearer token.

AreaDescription
ClubManage clubs, teams, players, trackers, and sessions
DeviceRegister and configure TRACKTICS GPS trackers
WebSocketReal-time position and event streams during sessions

The full interactive API reference is available under the API Reference section of this site.

Authentication quick start

Authorization: Bearer <your-firebase-jwt>

Obtain a JWT by signing in through Firebase Authentication with the credentials provided when your club account was created. Include the token in the Authorization header of every request.