Authentication
Requests to the RACEMAP APIs must include a valid API token which serves as a secure key.
The token authenticates you to the RACEMAP platform to retrieve your data from or direct your data to RACEMAP. Requests without a valid token will be rejected - or, in the case of data‐retrieval calls, blocked.
Obtain your API tokens
Sign in to your RACEMAP account https://racemap.com/auth/login.
Navigate to your account settings https://racemap.com/admin/account.
Scroll to the API Tokens section and click the "Add Token"-button.
Copy and store the token secure. You will not be able to view it again once you leave the page

Using API token
Sample to request participants from your event:
curl --location 'https://racemap.com/api/events/:eventId/starters' \
--header 'Authorization: Bearer <API_TOKEN>'
Last updated