GET All Continents

Returns all the continents available within your subscription.

https://api.sportmonks.com/v3/core/continents

Pagination

Yes

Include depth

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

Include options

countries

Related Entities:

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

Code Example

require "uri"
require "net/http"

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