Health check endpoint
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-odds-agent-production.up.railway.app/entrypoints/health/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
Compressed NBA odds from DK, FD, BetMGM, Caesars. Returns moneylines, spreads, totals.
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {},
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-odds-agent-production.up.railway.app/entrypoints/odds-nba/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {}
}
'
NBA arbitrage opportunities. Query param: min_edge (default 1%).
Input Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"min_edge": {
"default": 1,
"type": "number"
}
},
"required": [
"min_edge"
],
"additionalProperties": false
}
Invoke with curl
curl -s -X POST \
'https://nba-odds-agent-production.up.railway.app/entrypoints/arb-nba/invoke' \
-H 'Content-Type: application/json' \
-d '
{
"input": {
"min_edge": 0
}
}
'