diff --git a/src/Discord.Net.Core/CDN.cs b/src/Discord.Net.Core/CDN.cs
index f355ddd4..05bd257a 100644
--- a/src/Discord.Net.Core/CDN.cs
+++ b/src/Discord.Net.Core/CDN.cs
@@ -140,8 +140,8 @@ namespace Discord
///
/// A URL pointing to the guild's splash.
///
- public static string GetGuildSplashUrl(ulong guildId, string splashId)
- => splashId != null ? $"{DiscordConfig.CDNUrl}splashes/{guildId}/{splashId}.jpg" : null;
+ public static string GetGuildSplashUrl(ulong guildId, string splashId, ushort size = 2048)
+ => splashId != null ? $"{DiscordConfig.CDNUrl}splashes/{guildId}/{splashId}.jpg?size={size}" : null;
///
/// Returns a guild discovery splash URL.
///