Skip to main content
GET
/
orders
/
odds
/
best
Get best odds
curl --request GET \
  --url https://api.sx.bet/orders/odds/best
{
  "status": "success",
  "data": {
    "bestOdds": [
      {
        "marketHash": "0xbe621aead370a0c8c48fcfcff6fa60c49126683f4ba30945fbb94fcf8fb3fe9e",
        "baseToken": "0x6629Ce1Cf35Cc1329ebB4F63202F3f197b3F050B",
        "outcomeOne": {
          "percentageOdds": "65750000000000000000",
          "updatedAt": 1773008449368
        },
        "outcomeTwo": {
          "percentageOdds": "33000000000000000000",
          "updatedAt": 1773007355305
        }
      }
    ]
  }
}
Rate limit: All GET /orders/* endpoints share a combined limit of 20 requests/10s. See Rate Limits.
Exactly one of marketHashes or leagueIds must be provided, but not both.

Query Parameters

marketHashes
string[]

Only get best odds for these market hashes. Comma separated. Exactly one of marketHashes or leagueIds must be provided, but not both.

leagueIds
integer[]

Only get best odds for these league IDs. Comma separated. Exactly one of marketHashes or leagueIds must be provided, but not both.

baseToken
string
required

Only get best odds denominated in this base token.

Response

200 - application/json
status
string

success or failure if the request succeeded or not

data
object
Last modified on April 14, 2026