Timing integration (API)
This guide explains how to connect Rocky Global with third-party timing platforms (Chronotrack, MyLaps, and future integrations) using the participants API.Design principle
Rocky Global uses the bib number (BIB) as the participant’s primary identifier during check-in and operational exports. Mapping to external timing chip numbers is handled outside the check-in flow, typically by adding an extra column in Excel when exporting participants. This avoids duplicate records and keeps a single source of truth for registrations and kit delivery.Authentication
The API uses Bearer Token (Laravel Sanctum) with scopeorganizer-api or supervisor-api.
Timing-relevant endpoints
GET /api/v1/organizer/participants
Returns participants for the authenticated organizer. Useful filters for timing:
Relevant returned fields (via
ParticipantResource):
id— Internal participant IDbib— Bib numberlocator— Registration locator (unchanged on transfers)details— Form data (name, ID, gender, category, etc.)competition_results— Competition results (JSON, if already loaded)observations/participation_notes— Operational notes
POST /api/v1/organizer/participants
Bulk participant updates. Fields allowed for timing providers:bib— Adjust bib if the external provider renumberedcompetition_results— Load times, positions, splits (JSON)observations/participation_notes— Notesdetails— Additional fields (e.g.chip_idcolumn)
evento_id, locator, order_id, user_id, status.
202 Accepted and processes in the background.
Recommended Chronotrack flow
- Before the event: export participants with assigned bibs via API or Excel.
- In Chronotrack: import the list using the bib as the primary key.
- After the race: send times and positions back with
POST /participants, mappingchip_idindetailsif needed.
Excel export flow (without API)
If you prefer not to integrate via API:- Export participants from Registrations or Reports.
- Add a
chip_idcolumn (or similar) for the timing provider. - After the race, import results manually or via API POST.
Security considerations
- API tokens are restricted to the token owner’s
organizador_id. - Optional: IP allowlist in
organizer_api_settings. - Configurable rate limit (default 60 req/min).
- Every request is logged in API usage logs.
Support for new integrations
For MyLaps or other platforms, the same API contract applies: bib as key,competition_results for times, details for chip metadata.
Contact soporte@rocky.global if you need help with a specific connector or volumes above 20,000 participants.
