Markets
Markets endpoint documentation
Retrieve supported markets
POST /game/markets
Retrieve supported markets from a given game.
Body
Name
Type
Description
Required
api_key
string
your API key
game_id
string
ID of the game
league
string
league of the game
Python Example
import requests
body = {
"api_key": "XXXX-XXXX-XXXX",
"game_id": "GAME:NBA_New_York_Knicks_Philadelphia_76ers_2024-04-30T23:00:00",
"league": "NBA"
}
response = requests.post("https://api.propprofessor.com/game/markets", json=body)Response
Last updated