Skip to main content

Platform overview

Trainingym exposes two integration surfaces so your software can stay in sync with a gym's day-to-day operations:

  • REST API (v2) — read and write members, activity calendars, schedules and push notifications on demand.
  • Outbound webhooks — receive events (payments, schedule changes, member access) the moment they happen, without polling.

Which one do I need?

You want to…Use
Pull data when your system needs it (a nightly sync, an on-demand lookup)REST API
React in real time to something happening in the gymWebhooks
Register an access or create a member from your sideREST API
Mirror payments or bookings into your CRM as they occurWebhooks

Most integrations use both: the API to act on Trainingym, and webhooks to stay informed.

Getting credentials

API access is granted per center. Contact the integrations team at integraciones@trainingym.com to obtain the API key tied to the center(s) you will operate on. Then follow Authenticate with API keys to exchange it for a token.

Base URL

https://api.trainingym.com

All API routes are versioned under /api/v2/.... Webhooks are delivered to the endpoint you configure — see How webhooks work.