Created
January 5, 2022 06:11
-
-
Save kgravenreuth/5914d5394b6dfc0cef1e2a57e7079384 to your computer and use it in GitHub Desktop.
Cloudbet Market Helper getCompetition function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getCompetition(competition, apiKey) { | |
return fetch( | |
`https://sports-api.cloudbet.com/pub/v2/odds/competitions/${competition}`, | |
{ | |
headers: { | |
"X-Api-Key": "", | |
"cache-control": "max-age=600" | |
} | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment