ResearchPolicyCommitment
Solutions
Pricing
Learn
Try iMatch
NewsResourcesGet startedSign in

Learn

Everything you need to get the most out of iMatch.

Guided courses, step-by-step tutorials, real-world use cases, and developer APIs — for athletes, organizers, and builders alike.

iMatch Academy

Learning paths, start to finish.

Browse all courses

Tutorials

Short, practical how-tos.

Use Cases

Who iMatch is built for.

Club

The busy table tennis club

Centralized memberships, weekly leagues, and in-house scoring on one platform.

Organizer

The regional multi-sport open

Multiple venues, live brackets, and broadcast scoreboards from one operator seat.

Federation

The national governing body

Sanctioned events, rating integration, and reporting across member clubs.

Developers

Build on the platform.

Real-time match state, REST & WebSocket APIs, and live scoreboard surfaces power every iMatch app. We're interested in working with integration partners.

// illustrative — no public API yet
const ws = new WebSocket(
"wss://api.example.com/v1/matches/8421"
);
ws.onmessage = (e) => {
const s = JSON.parse(e.data);
render(s.score, s.server);
};