curl --request GET \
--url https://api.computeflow.cloud/api/v3/lobbies/{config} \
--header 'api-key: <api-key>'import requests
url = "https://api.computeflow.cloud/api/v3/lobbies/{config}"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.computeflow.cloud/api/v3/lobbies/{config}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.computeflow.cloud/api/v3/lobbies/{config}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.computeflow.cloud/api/v3/lobbies/{config}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.computeflow.cloud/api/v3/lobbies/{config}")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.computeflow.cloud/api/v3/lobbies/{config}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"lobbies": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"config": "<string>",
"name": "<string>",
"status": "waiting",
"host": "<string>",
"maxPlayers": 123,
"currentPlayers": 123,
"region": "<string>",
"allowLateJoin": true,
"hasServer": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}Browse lobbies
Returns a paginated list of public lobbies for the given config. Private (invite-only) lobbies are excluded.
Use status to filter by lobby state (waiting, in_queue, in_game). Use region to filter by region.
includePrivate: Set to true to also return private lobbies. Honored ONLY when authenticated with a server key (pf_*) — the project owner’s own dashboard/admin view. Client keys (pfclient_*) always get public-only results, so invite codes stay meaningful.
No x-player-id required. This endpoint is designed for lobby browsers and server-side matchmaking systems.
Results are ordered by creation time (newest first).
curl --request GET \
--url https://api.computeflow.cloud/api/v3/lobbies/{config} \
--header 'api-key: <api-key>'import requests
url = "https://api.computeflow.cloud/api/v3/lobbies/{config}"
headers = {"api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'api-key': '<api-key>'}};
fetch('https://api.computeflow.cloud/api/v3/lobbies/{config}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.computeflow.cloud/api/v3/lobbies/{config}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.computeflow.cloud/api/v3/lobbies/{config}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("api-key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.computeflow.cloud/api/v3/lobbies/{config}")
.header("api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.computeflow.cloud/api/v3/lobbies/{config}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["api-key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"lobbies": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"config": "<string>",
"name": "<string>",
"status": "waiting",
"host": "<string>",
"maxPlayers": 123,
"currentPlayers": 123,
"region": "<string>",
"allowLateJoin": true,
"hasServer": true,
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"total": 123,
"limit": 123,
"offset": 123,
"hasMore": true
}Authorizations
Path Parameters
Lobby configuration name or ID.
Query Parameters
Filter by region.
Filter by status (waiting, in_queue, in_game).
Max results per page (1–100). Defaults to 50.
1 <= x <= 100Pagination offset. Defaults to 0.
x >= 0Include private (invite-only) lobbies. Honored ONLY for server keys (pf_*) — the project owner's own admin/dashboard view. Ignored for client keys, so public browse never leaks private lobbies.
Response
Paginated list of public lobbies matching the filters.