Metadata API
Getting event supplementary data
Metadata API can be used to fetch supplementary information about specific sport event.
The endpoints are rate-limited.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
TradeArt event id.
Metadata type.
Expected version of metadata. Will return latest if not specified.
OK
Unauthorized
Forbidden
Not Found
Too many requests
GET /api/Metadata/event/{dataType}/{eventId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"eventId": 1,
"sportId": 1,
"dataType": "text",
"version": 1,
"data": null,
"creationTime": "2025-12-05T16:59:17.821Z"
}This endpoint is rate-limited to 20 requests per second.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
TradeArt sport id.
OK
Unauthorized
Forbidden
Too many requests
GET /api/Metadata/sport/types/{sportId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
"text"
]This endpoint is rate-limited to 20 requests per second.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
TradeArt event id.
OK
Unauthorized
Forbidden
Too many requests
GET /api/Metadata/event/all/{eventId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"eventId": 1,
"sportId": 1,
"dataType": "text",
"version": 1,
"data": null,
"creationTime": "2025-12-05T16:59:17.821Z"
}
]This endpoint is rate-limited to 1 request per second.
JWT Authorization header using the Bearer scheme. Example: "Authorization: Bearer {token}"
TradeArt event id.
OK
Unauthorized
Forbidden
Too many requests
GET /api/Metadata/event/types/{eventId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
"text"
]This endpoint is rate-limited to 40 requests per second.
Last updated