Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kgravenreuth/5914d5394b6dfc0cef1e2a57e7079384 to your computer and use it in GitHub Desktop.
Save kgravenreuth/5914d5394b6dfc0cef1e2a57e7079384 to your computer and use it in GitHub Desktop.
Cloudbet Market Helper getCompetition function
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