GET Region by ID

Returns information from your requested region ID.

https://api.sportmonks.com/v3/core/regions/{ID}

Pagination

No

Include depth

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

Include options

country cities

Related Entities:

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

Code Example

require "uri"
require "net/http"

url = URI("https://api.sportmonks.com/v3/core/regions/{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