GET Markets by Search by Name

This endpoint returns markets information from your requested search query.

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

Pagination

YES

Include depth

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

Pagination

YES

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}/fixture?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