GET api/Standings/Rider/ROTY?Season={Season}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| Season | string |
Default value is 2025 |
Body Parameters
None.
Response Information
Resource Description
Collection of RiderRoy| Name | Description | Type | Additional information |
|---|---|---|---|
| PointsEarned | decimal number |
None. |
|
| RiderRank | integer |
None. |
|
| Rider_ID | integer |
None. |
|
| RiderName | string |
None. |
|
| HomeTown | string |
None. |
|
| MoneyEarned | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PointsEarned": 1.0,
"RiderRank": 2,
"Rider_ID": 3,
"RiderName": "sample string 4",
"HomeTown": "sample string 5",
"MoneyEarned": 6.0
},
{
"PointsEarned": 1.0,
"RiderRank": 2,
"Rider_ID": 3,
"RiderName": "sample string 4",
"HomeTown": "sample string 5",
"MoneyEarned": 6.0
}
]
application/xml, text/xml
Sample:
<ArrayOfRiderRoy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PBR_API.Models">
<RiderRoy>
<HomeTown>sample string 5</HomeTown>
<MoneyEarned>6</MoneyEarned>
<RiderName>sample string 4</RiderName>
<Rider_ID>3</Rider_ID>
<PointsEarned>1</PointsEarned>
<RiderRank>2</RiderRank>
</RiderRoy>
<RiderRoy>
<HomeTown>sample string 5</HomeTown>
<MoneyEarned>6</MoneyEarned>
<RiderName>sample string 4</RiderName>
<Rider_ID>3</Rider_ID>
<PointsEarned>1</PointsEarned>
<RiderRank>2</RiderRank>
</RiderRoy>
</ArrayOfRiderRoy>