Go (SDK)
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.GetLksPlans(ctx)
if err != nil {
log.Fatal(err)
}
if res.LksPlans != nil {
// handle response
}
}curl --request GET \
--url https://api.latitude.sh/plans/lks \
--header 'Authorization: <api-key>'import requests
url = "https://api.latitude.sh/plans/lks"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/plans/lks', 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.latitude.sh/plans/lks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/plans/lks")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/lks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "plan_059EqY7kOQj8p",
"type": "lks_plans",
"attributes": {
"name": "m4.metal.small-42",
"slug": "m4-metal-small-42",
"specs": {
"cpu": {
"type": "E-2276G",
"clock": 3.8,
"cores": 6,
"count": 1
},
"memory": {
"total": 32
},
"drives": [
{
"count": 1,
"size": "3.8TB",
"type": "SSD"
}
],
"nics": [
{
"count": 1,
"type": "10 Gbps"
}
],
"gpu": {
"count": 4,
"type": "NVIDIA H100",
"vram_per_gpu": null,
"interconnect": null
}
},
"regions": [
{
"name": "United States",
"locations": {
"available": [
"DAL2"
],
"in_stock": [
"DAL2"
],
"in_stock_count": {
"DAL2": 5
}
},
"stock_level": "medium",
"pricing": {
"USD": {
"hour": 10,
"month": 50,
"year": 100
},
"BRL": {
"hour": 53,
"month": 108.5,
"year": 205
}
}
}
]
}
}
]
}Plans
List LKS plans
Lists bare metal plans available to LKS with per-site capacity for a node pool.
attributes.regions.locations.in_stock_count gives the number of servers a node pool can get, keyed by site slug.
GET
/
plans
/
lks
Go (SDK)
package main
import(
"context"
"os"
latitudeshgosdk "github.com/latitudesh/latitudesh-go-sdk"
"log"
)
func main() {
ctx := context.Background()
s := latitudeshgosdk.New(
latitudeshgosdk.WithSecurity(os.Getenv("LATITUDESH_BEARER")),
)
res, err := s.Plans.GetLksPlans(ctx)
if err != nil {
log.Fatal(err)
}
if res.LksPlans != nil {
// handle response
}
}curl --request GET \
--url https://api.latitude.sh/plans/lks \
--header 'Authorization: <api-key>'import requests
url = "https://api.latitude.sh/plans/lks"
headers = {"Authorization": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: '<api-key>'}};
fetch('https://api.latitude.sh/plans/lks', 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.latitude.sh/plans/lks",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}HttpResponse<String> response = Unirest.get("https://api.latitude.sh/plans/lks")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/plans/lks")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"data": [
{
"id": "plan_059EqY7kOQj8p",
"type": "lks_plans",
"attributes": {
"name": "m4.metal.small-42",
"slug": "m4-metal-small-42",
"specs": {
"cpu": {
"type": "E-2276G",
"clock": 3.8,
"cores": 6,
"count": 1
},
"memory": {
"total": 32
},
"drives": [
{
"count": 1,
"size": "3.8TB",
"type": "SSD"
}
],
"nics": [
{
"count": 1,
"type": "10 Gbps"
}
],
"gpu": {
"count": 4,
"type": "NVIDIA H100",
"vram_per_gpu": null,
"interconnect": null
}
},
"regions": [
{
"name": "United States",
"locations": {
"available": [
"DAL2"
],
"in_stock": [
"DAL2"
],
"in_stock_count": {
"DAL2": 5
}
},
"stock_level": "medium",
"pricing": {
"USD": {
"hour": 10,
"month": 50,
"year": 100
},
"BRL": {
"hour": 53,
"month": 108.5,
"year": 205
}
}
}
]
}
}
]
}Was this page helpful?