Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://app.opencomputer.dev/api/capacity/reservations \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.opencomputer.dev/api/capacity/reservations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.opencomputer.dev/api/capacity/reservations', 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://app.opencomputer.dev/api/capacity/reservations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-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://app.opencomputer.dev/api/capacity/reservations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://app.opencomputer.dev/api/capacity/reservations")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.opencomputer.dev/api/capacity/reservations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"from": "2026-04-01T00:00:00Z",
"to": "2026-05-01T00:00:00Z",
"reservations": [
{
"reservationId": "9f67b8f7-7b91-4d2d-b1cb-19d0d0a14562",
"createdAt": "2026-04-28T18:00:05Z",
"intervals": [
{
"startsAt": "2026-04-29T02:00:00Z",
"endsAt": "2026-04-29T02:15:00Z",
"capacityGb": 16
},
{
"startsAt": "2026-04-29T02:15:00Z",
"endsAt": "2026-04-29T02:30:00Z",
"capacityGb": 16
}
]
}
],
"nextCursor": null
}
curl --request GET \
--url https://app.opencomputer.dev/api/capacity/reservations \
--header 'X-API-Key: <api-key>'import requests
url = "https://app.opencomputer.dev/api/capacity/reservations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://app.opencomputer.dev/api/capacity/reservations', 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://app.opencomputer.dev/api/capacity/reservations",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-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://app.opencomputer.dev/api/capacity/reservations"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-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://app.opencomputer.dev/api/capacity/reservations")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.opencomputer.dev/api/capacity/reservations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"from": "2026-04-01T00:00:00Z",
"to": "2026-05-01T00:00:00Z",
"reservations": [
{
"reservationId": "9f67b8f7-7b91-4d2d-b1cb-19d0d0a14562",
"createdAt": "2026-04-28T18:00:05Z",
"intervals": [
{
"startsAt": "2026-04-29T02:00:00Z",
"endsAt": "2026-04-29T02:15:00Z",
"capacityGb": 16
},
{
"startsAt": "2026-04-29T02:15:00Z",
"endsAt": "2026-04-29T02:30:00Z",
"capacityGb": 16
}
]
}
],
"nextCursor": null
}
createdAt. Each reservation row includes
all the intervals it committed to. Useful for end-of-month reconciliation
and audit.
createdAt >= from. RFC 3339, UTC.createdAt < to. RFC 3339, UTC.nextCursor.{
"from": "2026-04-01T00:00:00Z",
"to": "2026-05-01T00:00:00Z",
"reservations": [
{
"reservationId": "9f67b8f7-7b91-4d2d-b1cb-19d0d0a14562",
"createdAt": "2026-04-28T18:00:05Z",
"intervals": [
{
"startsAt": "2026-04-29T02:00:00Z",
"endsAt": "2026-04-29T02:15:00Z",
"capacityGb": 16
},
{
"startsAt": "2026-04-29T02:15:00Z",
"endsAt": "2026-04-29T02:30:00Z",
"capacityGb": 16
}
]
}
],
"nextCursor": null
}