Cloudbet

Cloudbet

Sports & Fitness

Official Cloudbet API provides real-time sports odds and betting API to place bets programmatically

Visit APIπŸ” Alternatives

πŸ“š Documentation & Examples

Everything you need to integrate with Cloudbet

πŸš€ Quick Start Examples

Cloudbet Javascript Examplejavascript
// Cloudbet API Example
const response = await fetch('https://www.cloudbet.com/api/', {
    method: 'GET',
    headers: {
        'Content-Type': 'application/json'
    }
});

const data = await response.json();
console.log(data);

The Official Cloudbet API offers developers a powerful tool to integrate real-time sports odds and betting functionalities into their applications. By utilizing this API, businesses can programmatically place bets on various sports events, giving them a competitive edge in the fast-paced world of online betting. The API's comprehensive documentation at Cloudbet API Documentation provides in-depth guidance on how to effectively leverage its capabilities, ensuring seamless integration and performance. With real-time data and robust performance, developers can enhance user experiences and drive increased engagement in their platforms.

The benefits of using the Cloudbet API include:

  • Access to real-time sports odds across multiple events.
  • Ability to place bets programmatically, automating the betting process.
  • Streamlined integration with existing applications or platforms.
  • Comprehensive and easy-to-understand documentation for developers.
  • Enhanced user engagement through timely data and betting functionalities.

Here is a JavaScript code example for calling the API:

const axios = require('axios');

const apiUrl = 'https://api.cloudbet.com/v1/sports/odds';
const apiKey = 'YOUR_API_KEY_HERE';

axios.get(apiUrl, {
    headers: {
        'Authorization': `Bearer ${apiKey}`
    }
})
.then(response => {
    console.log('Sports Odds:', response.data);
})
.catch(error => {
    console.error('Error fetching odds:', error);
});

How to Get a Cloudbet API Key

Cloudbet requires an account and a generated API key. The key is a JWT string sent in the X-API-Key header β€” not a Bearer token.

  1. Log in to (or sign up at) your Cloudbet account.
  2. Open My Account β†’ API from the account menu.
  3. Generate a Trading API key (to read odds and place bets), or an Affiliate API key from the Affiliate API Token page.
  4. To activate a Trading key you must fund the account β€” depositing the equivalent of about 10 EUR unlocks Play-EUR test funds you can use to try requests.

The base URL is https://sports-api.cloudbet.com/pub/v2/. Example β€” list sports and odds:

fetch('https://sports-api.cloudbet.com/pub/v2/odds/sports', {
  headers: { 'X-API-Key': 'YOUR_API_KEY' }
})
  .then(res => res.json())
  .then(data => console.log(data));

Note the correct host is sports-api.cloudbet.com/pub/v2 with the X-API-Key header. The api.cloudbet.com/v1 + Bearer example in the older doc is outdated.

Explore More

Best Cloudbet alternatives (2026)Best Sports & Fitness APIs

Related APIs in Sports & Fitness