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.MarketplaceApps.GetMarketplaceApp(ctx, "openclaw")
if err != nil {
log.Fatal(err)
}
if res.MarketplaceApp != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.marketplaceApps.getMarketplaceApp({
id: "openclaw",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/marketplace_apps/{id} \
--header 'Authorization: <api-key>'import requests
url = "https://api.latitude.sh/marketplace_apps/{id}"
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/marketplace_apps/{id}', 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/marketplace_apps/{id}",
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/marketplace_apps/{id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/marketplace_apps/{id}")
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": "mkapp_x1kg1DegdvZE5",
"type": "marketplace_apps",
"attributes": {
"name": "OpenClaw",
"slug": "openclaw",
"description": "Personal AI agent gateway with messaging integrations",
"short_description": "Personal AI agent gateway",
"category": "ai_agents",
"version": "2026.7.20",
"system_requirements": {
"vcpus": 1,
"memory_in_gb": 2,
"storage_in_gb": 10,
"gpu": false
},
"deployment_strategy": "user_data",
"default_operating_system": "ubuntu_24_04_x64_lts",
"compatible_plans": [
"vm.small",
"vm.medium"
],
"access_instructions": "Connect with: ssh -L 18789:localhost:18789 ubuntu@{{PUBLIC_IPV4}}",
"upstream_url": "https://github.com/openclaw/openclaw",
"documentation_url": null,
"logo_url": null,
"created_at": "2026-07-20T12:00:00+00:00"
}
}
}{
"errors": [
{
"code": "<string>",
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Marketplace apps
Retrieve a marketplace app
Retrieve a single marketplace app by ID or slug. Only published apps are visible. Requires the marketplace_apps feature to be enabled for the team.
GET
/
marketplace_apps
/
{id}
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.MarketplaceApps.GetMarketplaceApp(ctx, "openclaw")
if err != nil {
log.Fatal(err)
}
if res.MarketplaceApp != nil {
// handle response
}
}import { Latitudesh } from "latitudesh-typescript-sdk";
const latitudesh = new Latitudesh({
bearer: process.env["LATITUDESH_BEARER"] ?? "",
});
async function run() {
const result = await latitudesh.marketplaceApps.getMarketplaceApp({
id: "openclaw",
});
console.log(result);
}
run();curl --request GET \
--url https://api.latitude.sh/marketplace_apps/{id} \
--header 'Authorization: <api-key>'import requests
url = "https://api.latitude.sh/marketplace_apps/{id}"
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/marketplace_apps/{id}', 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/marketplace_apps/{id}",
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/marketplace_apps/{id}")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.latitude.sh/marketplace_apps/{id}")
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": "mkapp_x1kg1DegdvZE5",
"type": "marketplace_apps",
"attributes": {
"name": "OpenClaw",
"slug": "openclaw",
"description": "Personal AI agent gateway with messaging integrations",
"short_description": "Personal AI agent gateway",
"category": "ai_agents",
"version": "2026.7.20",
"system_requirements": {
"vcpus": 1,
"memory_in_gb": 2,
"storage_in_gb": 10,
"gpu": false
},
"deployment_strategy": "user_data",
"default_operating_system": "ubuntu_24_04_x64_lts",
"compatible_plans": [
"vm.small",
"vm.medium"
],
"access_instructions": "Connect with: ssh -L 18789:localhost:18789 ubuntu@{{PUBLIC_IPV4}}",
"upstream_url": "https://github.com/openclaw/openclaw",
"documentation_url": null,
"logo_url": null,
"created_at": "2026-07-20T12:00:00+00:00"
}
}
}{
"errors": [
{
"code": "<string>",
"status": "<string>",
"title": "<string>",
"detail": "<string>",
"source": {
"pointer": "<string>",
"parameter": "<string>"
},
"meta": {}
}
]
}Was this page helpful?
⌘I