This API returns a list of checkin timestamps for all participants who have been checked in to a race.
Results are ordered by checkin_ts ascending.
Use the page and num parameters to paginate through large result sets.
Optional min_checkin_ts and max_checkin_ts query parameters can be used to limit results to a checkin timestamp range.
{
"checkin_timestamps": [
{
"registration_id": 123456,
"checkin_ts": 1730113200
},
{
"registration_id": 123457,
"checkin_ts": 1730113260
}
]
}
| Parameter | HTTP Method | Default | Description | Datatype |
|---|---|---|---|---|
api_key |
GET | API Key | string |
|
api_secret |
GET | API Secret | string |
|
rsu_api_key |
GET | API v2 key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET. | string |
|
sp_api_key |
GET | Super partner API key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET. | string |
|
X-RSU-API-SECRET |
HTTP Header | API v2 or super partner secret. | string |
|
Authorization |
HTTP Header | Authorization Header. If using OAuth 2.0, fill this in with `Bearer <token>`. | string |
| Parameter | HTTP Method | Default | Description | Datatype |
|---|---|---|---|---|
race_idRequired |
GET | ID of race. | uint |
|
min_checkin_ts |
GET | Only include checkins with checkin timestamp greater than or equal to this timestamp. | uint |
|
max_checkin_ts |
GET | Only include checkins with checkin timestamp less than or equal to this timestamp. | uint |
|
page |
GET | 1 | Page number to get. | uint |
num |
GET | 100 | Number of results per page (max 1,250). | uint |
{
"openapi": "3.0.3",
"info": {
"title": "Get CheckIn Timestamps",
"description": "Get checkin timestamps for all checked-in participants in a race.",
"version": "1.0.0",
"contact": {
"name": "RunSignup API Support",
"url": "https://runsignup.com/API",
"email": "info@runsignup.com"
}
},
"servers": [
{
"url": "https://api.runsignup.com/rest",
"description": "Production API Server"
}
],
"tags": [
{
"name": "Race Participants",
"description": "APIs related to Race Participants"
}
],
"components": {
"schemas": {
"Error": {
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Error message"
},
"details": {
"type": "object",
"description": "Additional error details",
"additionalProperties": true
}
},
"required": [
"error"
]
},
"BadRequestError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating invalid request parameters or structure"
}
]
},
"UnauthorizedError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating authentication failure"
}
]
},
"ForbiddenError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating the authenticated user lacks required permissions"
}
]
},
"NotFoundError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating the requested resource does not exist"
}
]
},
"ServerError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating an unexpected server-side issue"
}
]
},
"V2ParticipantsCheckinTimestampsGetResponse": {
"type": "object",
"title": "CheckIn Timestamps",
"description": "List of registration IDs and their checkin timestamps for a race",
"properties": {
"checkin_timestamps": {
"type": "array",
"description": "List of checkin timestamp records for the race",
"items": {
"type": "object",
"description": "Individual checkin timestamp record",
"properties": {
"registration_id": {
"type": "integer",
"description": "Registration ID of the checked-in participant"
},
"checkin_ts": {
"type": "integer",
"description": "UNIX timestamp when the participant was checked in"
}
},
"required": [
"registration_id",
"checkin_ts"
]
}
}
},
"required": [
"checkin_timestamps"
],
"example": {
"checkin_timestamps": [
{
"registration_id": 123456,
"checkin_ts": 1730113200
},
{
"registration_id": 123457,
"checkin_ts": 1730113260
}
]
}
}
},
"securitySchemes": {
"apiKey": {
"type": "apiKey",
"in": "query",
"name": "api_key",
"description": "RunSignup API Key"
},
"apiSecret": {
"type": "apiKey",
"in": "query",
"name": "api_secret",
"description": "RunSignup API Secret"
}
}
},
"paths": {
"/v2/participants/checkin-timestamps.json": {
"get": {
"tags": [
"Race Participants"
],
"summary": "Get CheckIn Timestamps",
"description": "Get checkin timestamps for all checked-in participants in a race.",
"operationId": "v2_participants_checkin_timestamps_json",
"parameters": [
{
"name": "api_key",
"in": "query",
"description": "API Key",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "api_secret",
"in": "query",
"description": "API Secret",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "rsu_api_key",
"in": "query",
"description": "API v2 key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "sp_api_key",
"in": "query",
"description": "Super partner API key. If used, you must send the API secret in an HTTP header named X-RSU-API-SECRET.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "X-RSU-API-SECRET",
"in": "header",
"description": "API v2 or super partner secret.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "Authorization",
"in": "header",
"description": "Authorization Header. If using OAuth 2.0, fill this in with `Bearer <token>`.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "race_id",
"in": "query",
"description": "ID of race.",
"required": true,
"schema": {
"type": "integer"
}
},
{
"name": "min_checkin_ts",
"in": "query",
"description": "Only include checkins with checkin timestamp greater than or equal to this timestamp.",
"required": false,
"schema": {
"type": "integer"
}
},
{
"name": "max_checkin_ts",
"in": "query",
"description": "Only include checkins with checkin timestamp less than or equal to this timestamp.",
"required": false,
"schema": {
"type": "integer"
}
},
{
"name": "page",
"in": "query",
"description": "Page number to get.",
"required": false,
"schema": {
"type": "integer",
"default": "1"
}
},
{
"name": "num",
"in": "query",
"description": "Number of results per page (max 1,250).",
"required": false,
"schema": {
"type": "integer",
"default": "100"
}
}
],
"security": [
{
"apiKey": [],
"apiSecret": []
}
],
"responses": {
"200": {
"description": "CheckIn Timestamps - List of registration IDs and their checkin timestamps for a race",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/V2ParticipantsCheckinTimestampsGetResponse"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BadRequestError"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UnauthorizedError"
}
}
}
},
"403": {
"description": "Forbidden",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ForbiddenError"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NotFoundError"
}
}
}
},
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServerError"
}
}
}
}
},
"x-permissions": [
"partners",
"race_directors",
"timers"
]
}
}
}
}