GET Market by ID

This endpoint returns market's information from your requested market ID.

https://api.sportmonks.com/v3/odds/markets/{ID}

Pagination

NO

Include depth

You can use a total of 0 nested includes on this endpoint

Include options

none

Get an overview and explanation of all the fields returned in the API response. The related entities for the Markets endpoint are:

Code Example

require "uri"
require "net/http"

url = URI("https://api.sportmonks.com/v3/odds/markets/{ID}?api_token={your_token}")

https = Net::HTTP.new(url.host, url.port)
https.use_ssl = true

request = Net::HTTP::Get.new(url)

response = https.request(request)
puts response.read_body

Last updated