The Racing API · Schema
OddsHistory
OddsHistory schema from The Racing API
Horse RacingSportsStatisticsBettingAnalytics
Properties
| Name | Type | Description |
|---|---|---|
| bookmaker | string | |
| fractional | string | |
| decimal | string | |
| ew_places | string | |
| ew_denom | string | |
| updated | string | |
| history | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/the-racing-api/refs/heads/main/json-schema/the-racing-api-odds-history-schema.json",
"title": "OddsHistory",
"description": "OddsHistory schema from The Racing API",
"type": "object",
"properties": {
"bookmaker": {
"type": "string",
"title": "Bookmaker"
},
"fractional": {
"type": "string",
"title": "Fractional"
},
"decimal": {
"type": "string",
"title": "Decimal"
},
"ew_places": {
"type": "string",
"title": "Ew Places"
},
"ew_denom": {
"type": "string",
"title": "Ew Denom"
},
"updated": {
"type": "string",
"title": "Updated"
},
"history": {
"anyOf": [
{
"items": {},
"type": "array"
},
{
"type": "null"
}
],
"title": "History",
"default": []
}
},
"required": [
"bookmaker",
"fractional",
"decimal",
"ew_places",
"ew_denom",
"updated"
]
}