Quick Start
Get your API keys
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error. You can request API key by filling out a form here
Make your first request
To make your first request, send an authenticated request to the pets endpoint. This will return a list of the latest race results.
Get list of finished races.
GET
https://api.derace.com/api/v1/races/results
Retrieves a list of all currently open races. Returns 10 results
Headers
Name
Type
Description
x-api-key*
String
App's API key
content-type*
application/json
Request Body
Name
Type
Description
tier
Number
Tier ID of requested races. Defaults to 5 (omega)
offset
Number
Number of entries to skip. Defaults to 0
Take a look at how you might call this method using our official libraries, or via curl
:
Last updated