List all available catalog apps.
curl --request GET \
--url https://api.rigbox.dev/api/v1/app-catalogimport requests
url = "https://api.rigbox.dev/api/v1/app-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rigbox.dev/api/v1/app-catalog', 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.rigbox.dev/api/v1/app-catalog",
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://api.rigbox.dev/api/v1/app-catalog"
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://api.rigbox.dev/api/v1/app-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rigbox.dev/api/v1/app-catalog")
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{
"items": [
{
"category": "<string>",
"description": "<string>",
"icon": "<string>",
"id": "<string>",
"min_disk_mb": 1,
"min_ram_mb": 1,
"name": "<string>",
"app_kind": {
"auto_enable": true,
"created_at": "2023-11-07T05:31:56Z",
"env_vars": {},
"exec_start": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"restart_policy": "<string>",
"setup_script": "<string>",
"source": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"kind": "service",
"app_id": "<string>",
"environment_file": "<string>",
"workspace_id": "<string>"
},
"configurable_params": [
{
"key": "<string>",
"label": "<string>",
"default": "<string>",
"description": "<string>",
"group": "<string>",
"help_url": "<string>",
"options": [
{
"label": "<string>",
"value": "<string>"
}
],
"order": 123,
"required": true,
"sensitive": true,
"validation_pattern": "<string>"
}
],
"destructive_delete": true,
"incompatible_templates": [
"<string>"
],
"preview": true,
"system_tags": [
"<string>"
]
}
]
}App Catalog
List App Catalog
Browse the catalog of installable apps and services.
GET
/
api
/
v1
/
app-catalog
List all available catalog apps.
curl --request GET \
--url https://api.rigbox.dev/api/v1/app-catalogimport requests
url = "https://api.rigbox.dev/api/v1/app-catalog"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.rigbox.dev/api/v1/app-catalog', 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.rigbox.dev/api/v1/app-catalog",
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://api.rigbox.dev/api/v1/app-catalog"
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://api.rigbox.dev/api/v1/app-catalog")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.rigbox.dev/api/v1/app-catalog")
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{
"items": [
{
"category": "<string>",
"description": "<string>",
"icon": "<string>",
"id": "<string>",
"min_disk_mb": 1,
"min_ram_mb": 1,
"name": "<string>",
"app_kind": {
"auto_enable": true,
"created_at": "2023-11-07T05:31:56Z",
"env_vars": {},
"exec_start": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"restart_policy": "<string>",
"setup_script": "<string>",
"source": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"user_id": "<string>",
"kind": "service",
"app_id": "<string>",
"environment_file": "<string>",
"workspace_id": "<string>"
},
"configurable_params": [
{
"key": "<string>",
"label": "<string>",
"default": "<string>",
"description": "<string>",
"group": "<string>",
"help_url": "<string>",
"options": [
{
"label": "<string>",
"value": "<string>"
}
],
"order": 123,
"required": true,
"sensitive": true,
"validation_pattern": "<string>"
}
],
"destructive_delete": true,
"incompatible_templates": [
"<string>"
],
"preview": true,
"system_tags": [
"<string>"
]
}
]
}Response
200 - application/json
List of available catalog app items
Show child attributes
Show child attributes
⌘I