Grid capacity & network stats
curl --request GET \
--url https://grid.x402compute.cc/grid/capacityimport requests
url = "https://grid.x402compute.cc/grid/capacity"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://grid.x402compute.cc/grid/capacity', 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://grid.x402compute.cc/grid/capacity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://grid.x402compute.cc/grid/capacity"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://grid.x402compute.cc/grid/capacity")
.asString();require 'uri'
require 'net/http'
url = URI("https://grid.x402compute.cc/grid/capacity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"active_nodes": 3,
"total_nodes": 10,
"apple_nodes": 3,
"intel_nodes": 0,
"amd_nodes": 0,
"nvidia_nodes": 0,
"total_jobs": 330,
"jobs_completed": 398,
"jobs_submitted": 585,
"total_sgl_staked": 1200001,
"at_capacity": false,
"models": [
{
"model": "qwen-2.5-14b",
"nodes": 2,
"busy_nodes": 0,
"free_slots": 2,
"at_capacity": false
}
]
}SGL Grid
Grid capacity & network stats
Live public network stats — node counts by hardware, lifetime jobs served/submitted, total $SGL staked, per-model availability. No auth, open CORS.
GET
/
grid
/
capacity
Grid capacity & network stats
curl --request GET \
--url https://grid.x402compute.cc/grid/capacityimport requests
url = "https://grid.x402compute.cc/grid/capacity"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://grid.x402compute.cc/grid/capacity', 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://grid.x402compute.cc/grid/capacity",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://grid.x402compute.cc/grid/capacity"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://grid.x402compute.cc/grid/capacity")
.asString();require 'uri'
require 'net/http'
url = URI("https://grid.x402compute.cc/grid/capacity")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"active_nodes": 3,
"total_nodes": 10,
"apple_nodes": 3,
"intel_nodes": 0,
"amd_nodes": 0,
"nvidia_nodes": 0,
"total_jobs": 330,
"jobs_completed": 398,
"jobs_submitted": 585,
"total_sgl_staked": 1200001,
"at_capacity": false,
"models": [
{
"model": "qwen-2.5-14b",
"nodes": 2,
"busy_nodes": 0,
"free_slots": 2,
"at_capacity": false
}
]
}Response
200 - application/json
OK
Example:
3
Example:
10
Example:
3
Example:
0
Example:
0
Example:
0
Completed jobs across currently-active nodes.
Example:
330
Lifetime completed (served) jobs — never shrinks.
Example:
398
Lifetime submitted (total) jobs.
Example:
585
Example:
1200001
Example:
false
Show child attributes
Show child attributes
Was this page helpful?
