diff --git a/Starnet/LighthouseClient.cs b/Starnet/LighthouseClient.cs index c65c996..9205cf7 100644 --- a/Starnet/LighthouseClient.cs +++ b/Starnet/LighthouseClient.cs @@ -248,7 +248,7 @@ public async Task GetStatusAsync() public async Task?> GetSlotsAsync(int limit = 20, int skip = 0) { // Get the list of slots from the API. - HttpResponseMessage slotsReq = await this.httpClient.GetAsync("slots"); + HttpResponseMessage slotsReq = await this.httpClient.GetAsync($"slots?limit={limit}&skip={skip}"); if (!slotsReq.IsSuccessStatusCode) { return null; // Return null if the request failed.