Open API

Getting started with the Plyomat Open API

The Plyomat Open API gives you secure, read-only access to your organization's training data: athletes, groups, devices, test sessions, individual jumps, and assessment results. It is a plain REST API that returns JSON, so you can sync Plyomat into your own dashboards, athlete-management system, or data warehouse. Included free for Plyomat owners.

REST
JSON over HTTPS
Read-only
Safe by design
v1
Current version
Free
For Plyomat owners
The basics

What you can read

The API is read-only by design. It exposes the same training data you see in the app, structured as clean REST resources you can pull on your own schedule.

👤

Athletes & Groups

Your roster and how it is organized: names, gender, body weight, external IDs, and the groups each athlete belongs to.

📱

Devices

The mats and controllers registered to your organization, so you can attribute data back to the hardware that captured it.

📊

Sessions & Sets

Every test session and the sets inside it. Each set embeds its individual jumps (reps) with flight time, contact time, jump height, and RSI.

Assessments

Computed assessment results, ready to drop into reports, leaderboards, or longitudinal tracking on your side.

👑

Org members

The coaches and staff on your account, including archived members when you ask for them.

🔄

One source of truth

Pull it once or sync it continuously. Either way the data matches what your coaches captured on the mat, to 0.001 seconds.

Setup

Base URL & authentication

Every endpoint hangs off a single versioned base URL.

https://api.plyomat.com/v1

Every request needs your API key sent as a Bearer token in the Authorization header:

Authorization: Bearer pk_live_xxxxxxxxxxxx

Treat the key like a password: it grants read access to your whole organization. You can rotate or revoke it anytime from the Plyomat dashboard under Settings › Integrations. Keys are scoped to read-only access, so they can never modify or delete your data.

Getting your key. API keys are self-serve from your own organization account, no request needed:

  1. Sign in to your Plyomat dashboard at app.plyomat.com.
  2. Open Settings, then Integrations.
  3. Generate your API key and copy it. You can rotate or revoke it from the same screen at any time.
Hello, world

Your first call

List your athletes with a single authenticated request.

curl https://api.plyomat.com/v1/athletes \
  -H "Authorization: Bearer pk_live_xxxxxxxxxxxx"

Every list endpoint returns the same response envelope: a data array of records plus a total.

{
  "data": [
    {
      "id": "...",
      "first_name": "...",
      "last_name": "...",
      "gender": "...",
      "body_weight_kg": 0,
      "external_id": null,
      "external_source": null,
      "created_at": "...",
      "updated_at": "..."
    }
  ],
  "total": 1,
  "limit": 100,
  "offset": 0,
  "has_more": false
}
Reference

Endpoints

Eight resources, each a list and (where it makes sense) a detail endpoint, with a few filters to keep responses small.

ResourceListDetailFilters
AthletesGET /athletesGET /athletes/{id}group_id
GroupsGET /groupsGET /groups/{id}None
DevicesGET /devicesGET /devices/{id}None
SessionsGET /sessionsGET /sessions/{id}athlete_id, since
SetsGET /setsGET /sets/{id}athlete_id, session_id, since, mode
AssessmentsGET /assessmentsNoneNone
Org membersGET /org/membersNoneinclude_archived

Each set embeds its reps (rep_index, flight_time_ms, contact_time_ms, jump_height_cm, rsi, side, is_kept, captured_at), so a single GET /sets?session_id=... gives you a session's full jump-by-jump detail in one call.

At scale

Paging, limits & syncing

Every list endpoint is paginated. Add ?limit=N (default 100, max 500) and ?offset=N (default 0). The envelope tells you everything:

{
  "data": [ /* ...rows... */ ],
  "total": 525,      // TRUE total across all pages, not just this page
  "limit": 100,
  "offset": 0,
  "has_more": true   // more rows exist past this page
}

Page by incrementing offset (0, 100, 200, ...) until has_more is false.

To pull large datasets reliably, filter rather than page. Two patterns cover almost everything:

Incremental sync

Poll the since filter for anything new since your last run.

curl "https://api.plyomat.com/v1/sets?since=2026-06-01T00:00:00Z" \
  -H "Authorization: Bearer pk_live_xxxxxxxxxxxx"

Run the same call against /sessions?since=... and you have a complete, low-cost incremental sync.

Backfill

For a one-time historical pull, loop your athletes and request their sets one athlete at a time, which keeps every call well under the row limit.

curl "https://api.plyomat.com/v1/sets?athlete_id=<id>" \
  -H "Authorization: Bearer pk_live_xxxxxxxxxxxx"

Push delivery via webhooks is coming soon. Until then, the ?since= poll above is the recommended way to stay in sync.

Questions

Open API FAQ

Does Plyomat have an API?
Yes. Plyomat offers a public, read-only Open API: a REST API that returns your organization's training data (athletes, groups, devices, sessions, individual jumps, and assessments) as JSON over HTTPS. It is included free for Plyomat owners. The base URL is https://api.plyomat.com/v1, and the full interactive reference lives at app.plyomat.com/developers.
What is the Plyomat Open API?
A secure, read-only REST API that gives you access to your organization's training data: athletes, groups, devices (mats), test sessions, individual jumps (reps), and assessment results. It returns JSON over HTTPS, so you can sync Plyomat into your own dashboards, athlete-management system, or data warehouse.
How do I authenticate?
Send your API key as a Bearer token in the Authorization header: Authorization: Bearer pk_live_xxxxxxxxxxxx. Treat the key like a password, since it grants read access to your whole organization. Rotate or revoke it anytime from the dashboard under Settings then Integrations.
Is the API read-only?
Yes. Every key is scoped to read-only access, so an integration can pull your data but can never modify or delete it. That makes it safe to wire into reporting tools and third-party dashboards.
How do I sync large datasets without hitting limits?
Filter rather than page. For incremental sync, poll GET /sessions?since=<ISO8601> and GET /sets?since=<ISO8601> for anything new since your last run. For a full backfill, loop your athletes and call GET /sets?athlete_id=<id> per athlete.
How do I get an API key?
Generate it yourself from your organization account. Sign in to your Plyomat dashboard at app.plyomat.com, open Settings then Integrations, and create your key. You can copy, rotate, or revoke it anytime from the same screen, with no request needed.
Is there an interactive reference?
Yes. The full, interactive API reference, with every endpoint, field, and live request builder, lives at app.plyomat.com/developers.

Build on your own data.

The Plyomat Open API is included free for owners. Pull your athletes, sessions, and every jump into your own tools, with a read-only key you control.

Open the interactive reference