Overview
Cloud9 is a professional esports organization established in 2013, known for its participation in various competitive gaming titles. The organization fields teams in major esports such as League of Legends, Valorant, and Counter-Strike 2 (CS2), among others. Cloud9's operational scope extends beyond competitive play to include merchandise sales and content creation, engaging a global audience of esports enthusiasts. The organization was initially founded by Jack Etienne and has since grown to become one of the most recognized brands in esports.
In League of Legends, Cloud9 has maintained a consistent presence in the North American League of Legends Championship Series (LCS). The organization secured multiple LCS championships, including the Spring 2021 title, which qualified them for the Mid-Season Invitational (MSI) as the North American representative Cloud9 League of Legends history. Their performance in international tournaments has varied, with notable appearances at the League of Legends World Championship.
Cloud9 entered the Valorant esports scene early, fielding teams in North America. The organization has competed in the Valorant Champions Tour (VCT), including the VCT Americas League, which represents the highest tier of Valorant competition in the region VCT Americas League teams. Their Valorant rosters have featured prominent players and have been contenders in various regional and international events.
In Counter-Strike, Cloud9 has a history spanning multiple iterations of the game, including CS:GO and CS2. The organization has participated in numerous ESL Pro League seasons and Intel Extreme Masters (IEM) events. A significant achievement for Cloud9 in Counter-Strike was winning the ELEAGUE Major: Boston 2018, marking a historic victory for a North American team on the Major stage ELEAGUE Major: Boston 2018 event details. This victory elevated their profile within the global Counter-Strike community.
Cloud9's appeal extends to brands seeking sponsorship opportunities within the esports sector, given its established fanbase and consistent media presence. For competitive gamers, Cloud9 represents a potential career path, offering infrastructure and support for professional play. The organization also produces various forms of content, including player streams, behind-the-scenes documentaries, and competitive match analyses, contributing to its engagement with the esports community.
Key features
- Professional Esports Teams: Cloud9 fields competitive rosters across prominent esports titles, including League of Legends, Valorant, and Counter-Strike 2. These teams compete in official leagues and tournaments globally, aiming for championships.
- Merchandise Sales: The organization offers a range of branded apparel, accessories, and gear through its online store. This includes team jerseys, hoodies, hats, and other items designed for fans to support the brand.
- Content Creation: Cloud9 produces various forms of digital content, such as player streams, video series documenting team activities, interviews, and competitive analysis. This content is distributed across platforms like Twitch, YouTube, and official social media channels.
- Player Development: Cloud9 invests in scouting, training, and developing esports talent. This includes providing coaching staff, facilities, and resources to help players improve their skills and perform at a professional level.
- Community Engagement: The organization actively interacts with its fanbase through social media, fan events, and online initiatives. This fosters a community around its teams and brand.
Pricing
Cloud9 primarily operates as a professional esports organization, and as such, does not offer traditional software or service pricing. Its revenue streams are derived from competitive prize winnings, sponsorships, merchandise sales, and media rights. Individuals interested in supporting Cloud9 can do so through purchasing merchandise or subscribing to content creators associated with the organization.
| Product/Service | Description | As-of Date | Pricing Model | External Citation |
|---|---|---|---|---|
| Team Merchandise | Apparel, accessories, and gear featuring Cloud9 branding. | 2026-05-05 | Retail Pricing (Varies by item) | Cloud9 Store |
| Esports Sponsorships | Brand visibility and integration with Cloud9 teams and content. | 2026-05-05 | Custom Contract (Negotiated) | Cloud9 Contact Page |
| Content Subscriptions/Donations | Support for individual Cloud9 content creators on platforms like Twitch. | 2026-05-05 | Platform-specific (e.g., Twitch subscriptions) | Cloud9 Twitch Channel |
Common integrations
As an esports organization, Cloud9 does not offer technical integrations in the traditional software sense. Its 'integrations' are primarily partnerships and platform presences:
- Twitch: Cloud9 players and content creators frequently stream on Twitch, integrating with the platform's live streaming and community features. Fans can subscribe to individual streamers or the official Cloud9 Twitch channel Cloud9's Twitch team page.
- YouTube: Official match highlights, documentaries, and other video content are published on Cloud9's YouTube channel. This integrates with YouTube's video hosting and audience engagement tools.
- Social Media Platforms: Cloud9 maintains active presences on platforms such as X (formerly Twitter), Instagram, and Facebook for direct fan communication and content distribution, integrating with their respective APIs for scheduling and analytics.
- Esports Tournament Organizers: Cloud9 teams integrate with the systems and rulesets of various tournament organizers like Riot Games (for League of Legends and Valorant) Riot Games official site, ESL, and BLAST Premier for competitive play, data tracking, and broadcasting.
Alternatives
- Team Liquid: A global esports organization with teams across numerous titles, known for its extensive infrastructure and media presence.
- TSM: North American esports organization recognized for its success in League of Legends and other competitive games, alongside its content creation efforts.
- Fnatic: European esports organization with a long history of competitive success in titles like CS:GO, League of Legends, and Valorant, and a strong brand in esports.
- G2 Esports: A prominent European esports organization known for its competitive teams and engaging social media presence.
- FaZe Clan: A lifestyle and media brand rooted in gaming and esports, with competitive teams and a large content creator network.
Getting started
Engaging with Cloud9 as a fan typically involves following their competitive teams and content. For developers or those interested in the technical aspects of esports data, public APIs from game publishers or third-party data providers can be used to access competitive results involving Cloud9 teams. There is no direct "getting started" code for Cloud9 itself, as it is an organization rather than a software product. However, one could use a public API to retrieve match data for a Cloud9 team.
The following example demonstrates how one might conceptually retrieve match data for a League of Legends team, using a hypothetical API endpoint for illustrative purposes. This would require an API key and understanding of the specific game's data structure, such as those provided by Riot Games for League of Legends match data Riot Games Developer API.
import requests
import json
# This is a hypothetical endpoint and API key for demonstration.
# Actual Riot Games API requires registration and specific endpoints.
RIOT_API_KEY = "YOUR_RIOT_API_KEY"
TEAM_ID = "CLOUD9_LOL_TEAM_ID" # Placeholder for Cloud9's team ID in a hypothetical API
def get_cloud9_lol_matches(api_key, team_id, count=10):
headers = {
"X-Riot-Token": api_key
}
# Example endpoint structure - actual Riot API has more complex call paths
# For real usage, you'd first get account IDs, then match IDs, then match details.
# This is a simplified concept.
url = f"https://americas.api.riotgames.com/lol/match/v5/matches/by-team/{team_id}/history?count={count}"
try:
response = requests.get(url, headers=headers)
response.raise_for_status() # Raise an exception for HTTP errors
return response.json()
except requests.exceptions.HTTPError as errh:
print(f"Http Error: {errh}")
except requests.exceptions.ConnectionError as errc:
print(f"Error Connecting: {errc}")
except requests.exceptions.Timeout as errt:
print(f"Timeout Error: {errt}")
except requests.exceptions.RequestException as err:
print(f"Something Else: {err}")
return None
if __name__ == "__main__":
print("Attempting to retrieve Cloud9 LoL match history...")
match_data = get_cloud9_lol_matches(RIOT_API_KEY, TEAM_ID)
if match_data:
print(f"Successfully retrieved {len(match_data)} match entries.")
# Pretty print the first match for inspection
if match_data:
print("\nFirst match entry:")
print(json.dumps(match_data[0], indent=2))
else:
print("Failed to retrieve match data. Check API key and team ID.")
This Python code snippet illustrates how one might interact with a hypothetical API endpoint to fetch match data. In a real-world scenario, obtaining specific team data directly from Riot's API would involve a more intricate process, typically starting with player identification and then querying for their match history. This example serves as a conceptual starting point for interacting with esports data programmatically.