Get bet markets

To retrieve all bet markets available in the system, you can make a GET request to the following endpoint:

Endpoint

GET /bet/markets/

CURL example


curl -X GET https://betmatic.app/api/bet/markets/ \
  -H 'Accept: application/json' \
  -H 'Authorization: Token {token}'

This will return a list of bet markets along with their full names. You can use these full names for creating notifications or publishing picks. Responses

Status
Meaning
Description
Schema

200

Success

BetMarket

BetMarket

Name
Type
Description

markets

[string]

Full name of racing markets

codes

[string]

This will return a list of short codes for different bet markets. These short codes are used for checking the available markets for bookies.

sports_markets

[SportsMarket]

Full name of sports markets

200 Response example

{
  "markets": [
    "Fixed Win",
    "Fixed Place",
    "Top Fluc",
    "Tote Win",
    "Tote Place",
    "Best Tote Win",
    "Best Tote Place",
    "Mid Tote Win",
    "Mid Tote Place",
    "Best of Best",
    "Same Race Multi"
  ],
  "codes": ["FWIN", "FPLC", "TF", "TWIN", "TPLC", "BT3SP", "BTP", "MT", "MTP", "BOB", "SRM"],
  "sports_markets": [
        {
            "sport": "AFL",
            "markets": [
                "Head to Head",
                "Margin",
                "Handicap",
                "1st Quarter Line",
                "Half Time Line",
                "Total Match Points",
                "Home Team Total Points (Over/Under)",
                "Away Team Total Points (Over/Under)",
                "1st Quarter Total Points",
                "Half Time Total Points",
                "Second Half Total Points",
                "Players Disposals",
                "Anytime Goalscorer",
                "Multiple Goalscorer"
            ]
        },
        {
            "sport": "NBA",
            "markets": [
                "Head to Head",
                "Margin",
                "Handicap",
                "Total Match Points",
                "Home Team Total Points (Over/Under)",
                "Away Team Total Points (Over/Under)",
                "1st Quarter Line",
                "2nd Quarter Line",
                "3rd Quarter Line",
                "4th Quarter Line",
                "1st Quarter Total Points",
                "Player Points (Over/Under)",
                "Player Points Milestone",
                "Player 3 Pointers Made (Over/Under)",
                "Player 3 Pointers Made",
                "Player Assists (Over/Under)",
                "Player Assists Milestone",
                "Player Rebounds (Over/Under)",
                "Player Rebounds Milestone",
                "Player Steals (Over/Under)",
                "Player Steals Milestones",
                "Player Blocks (Over/Under)",
                "Player Blocks Milestone",
                "Player Combination-Points, Rebounds, Assists (Over/Under)",
                "Player Combination-Points, Rebounds (Over/Under)",
                "Player Combination-Points, Assists (Over/Under)",
                "Player Combination-Rebounds, Assists (Over/Under)",
                "Double Double",
                "Triple Double"
            ]
        },
        {
            "sport": "American Football",
            "markets": [
                "Head to Head",
                "Handicap",
                "Total Match Points"
            ]
        },
        {
            "sport": "Baseball",
            "markets": [
                "Head to Head",
                "Handicap",
                "Total Match Points"
            ]
        },
        {
            "sport": "Basketball",
            "markets": [
                "Head to Head",
                "Margin",
                "Handicap",
                "Total Match Points",
                "Home Team Total Points (Over/Under)",
                "Away Team Total Points (Over/Under)",
                "1st Quarter Line",
                "2nd Quarter Line",
                "3rd Quarter Line",
                "4th Quarter Line",
                "1st Quarter Total Points",
                "Player Points (Over/Under)",
                "Player Points Milestone",
                "Player 3 Pointers Made (Over/Under)",
                "Player 3 Pointers Made",
                "Player Assists (Over/Under)",
                "Player Assists Milestone",
                "Player Rebounds (Over/Under)",
                "Player Rebounds Milestone",
                "Player Steals (Over/Under)",
                "Player Steals Milestones",
                "Player Blocks (Over/Under)",
                "Player Blocks Milestone",
                "Player Combination-Points, Rebounds, Assists (Over/Under)",
                "Player Combination-Points, Rebounds (Over/Under)",
                "Player Combination-Points, Assists (Over/Under)",
                "Player Combination-Rebounds, Assists (Over/Under)",
                "Double Double",
                "Triple Double"
            ]
        },
        {
            "sport": "Boxing",
            "markets": [
                "Head to Head",
                "Result"
            ]
        },
        {
            "sport": "Cricket",
            "markets": [
                "Head to Head"
            ]
        },
        {
            "sport": "Darts",
            "markets": [
                "Head to Head"
            ]
        },
        {
            "sport": "Handball",
            "markets": [
                "Head to Head",
                "Result",
                "Total Match Points"
            ]
        },
        {
            "sport": "Ice Hockey",
            "markets": [
                "Head to Head",
                "Handicap",
                "Total Match Points",
                "Result"
            ]
        },
        {
            "sport": "Rugby League",
            "markets": [
                "Head to Head",
                "Total Match Points",
                "Handicap"
            ]
        },
        {
            "sport": "Rugby Union",
            "markets": [
                "Head to Head",
                "Total Match Points",
                "Handicap"
            ]
        },
        {
            "sport": "Soccer",
            "markets": [
                "Head to Head",
                "Handicap",
                "Total Match Points",
                "Result"
            ]
        },
        {
            "sport": "Tennis",
            "markets": [
                "Head to Head",
                "Handicap",
                "Total Match Points"
            ]
        },
        {
            "sport": "Volleyball",
            "markets": [
                "Head to Head",
                "Total Match Points"
            ]
        }
    ]
}

Last updated