Submit a template to the marketplace
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/agents/marketplace/publish \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"slug": "order-status-bot",
"name": "Order Status Bot",
"category": "support",
"description": "Answers \"where is my order?\" from your commerce backend.",
"system_prompt": "You are a concise support agent that looks up order status and shares tracking links.",
"model": "claude-sonnet-4-6",
"temperature": 0.4,
"tools_config": [
"lookup_order_status"
],
"conversation_starters": [
"Where is my order?"
],
"channels": [
"web",
"whatsapp"
],
"tags": [
"support",
"ecommerce"
]
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/agents/marketplace/publish"
payload = {
"slug": "order-status-bot",
"name": "Order Status Bot",
"category": "support",
"description": "Answers \"where is my order?\" from your commerce backend.",
"system_prompt": "You are a concise support agent that looks up order status and shares tracking links.",
"model": "claude-sonnet-4-6",
"temperature": 0.4,
"tools_config": ["lookup_order_status"],
"conversation_starters": ["Where is my order?"],
"channels": ["web", "whatsapp"],
"tags": ["support", "ecommerce"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
slug: 'order-status-bot',
name: 'Order Status Bot',
category: 'support',
description: 'Answers "where is my order?" from your commerce backend.',
system_prompt: 'You are a concise support agent that looks up order status and shares tracking links.',
model: 'claude-sonnet-4-6',
temperature: 0.4,
tools_config: ['lookup_order_status'],
conversation_starters: ['Where is my order?'],
channels: ['web', 'whatsapp'],
tags: ['support', 'ecommerce']
})
};
fetch('https://api.orbit.devotel.io/api/v1/agents/marketplace/publish', 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.orbit.devotel.io/api/v1/agents/marketplace/publish",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'slug' => 'order-status-bot',
'name' => 'Order Status Bot',
'category' => 'support',
'description' => 'Answers "where is my order?" from your commerce backend.',
'system_prompt' => 'You are a concise support agent that looks up order status and shares tracking links.',
'model' => 'claude-sonnet-4-6',
'temperature' => 0.4,
'tools_config' => [
'lookup_order_status'
],
'conversation_starters' => [
'Where is my order?'
],
'channels' => [
'web',
'whatsapp'
],
'tags' => [
'support',
'ecommerce'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/agents/marketplace/publish"
payload := strings.NewReader("{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/agents/marketplace/publish")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/agents/marketplace/publish")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"template_id": "<string>",
"slug": "<string>",
"status": "pending",
"message": "<string>"
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Agents
Submit a template to the marketplace
Submit a new agent template from your tenant back to the public marketplace. The submission lands in a pending state — invisible to the public list, detail, and install endpoints — until a platform moderator approves it. A slug that collides with an existing template is rejected with 409. Returns 202 to signal the template is queued for review.
POST
/
api
/
v1
/
agents
/
marketplace
/
publish
Submit a template to the marketplace
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/agents/marketplace/publish \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"slug": "order-status-bot",
"name": "Order Status Bot",
"category": "support",
"description": "Answers \"where is my order?\" from your commerce backend.",
"system_prompt": "You are a concise support agent that looks up order status and shares tracking links.",
"model": "claude-sonnet-4-6",
"temperature": 0.4,
"tools_config": [
"lookup_order_status"
],
"conversation_starters": [
"Where is my order?"
],
"channels": [
"web",
"whatsapp"
],
"tags": [
"support",
"ecommerce"
]
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/agents/marketplace/publish"
payload = {
"slug": "order-status-bot",
"name": "Order Status Bot",
"category": "support",
"description": "Answers \"where is my order?\" from your commerce backend.",
"system_prompt": "You are a concise support agent that looks up order status and shares tracking links.",
"model": "claude-sonnet-4-6",
"temperature": 0.4,
"tools_config": ["lookup_order_status"],
"conversation_starters": ["Where is my order?"],
"channels": ["web", "whatsapp"],
"tags": ["support", "ecommerce"]
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
slug: 'order-status-bot',
name: 'Order Status Bot',
category: 'support',
description: 'Answers "where is my order?" from your commerce backend.',
system_prompt: 'You are a concise support agent that looks up order status and shares tracking links.',
model: 'claude-sonnet-4-6',
temperature: 0.4,
tools_config: ['lookup_order_status'],
conversation_starters: ['Where is my order?'],
channels: ['web', 'whatsapp'],
tags: ['support', 'ecommerce']
})
};
fetch('https://api.orbit.devotel.io/api/v1/agents/marketplace/publish', 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.orbit.devotel.io/api/v1/agents/marketplace/publish",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'slug' => 'order-status-bot',
'name' => 'Order Status Bot',
'category' => 'support',
'description' => 'Answers "where is my order?" from your commerce backend.',
'system_prompt' => 'You are a concise support agent that looks up order status and shares tracking links.',
'model' => 'claude-sonnet-4-6',
'temperature' => 0.4,
'tools_config' => [
'lookup_order_status'
],
'conversation_starters' => [
'Where is my order?'
],
'channels' => [
'web',
'whatsapp'
],
'tags' => [
'support',
'ecommerce'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/agents/marketplace/publish"
payload := strings.NewReader("{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/agents/marketplace/publish")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/agents/marketplace/publish")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"slug\": \"order-status-bot\",\n \"name\": \"Order Status Bot\",\n \"category\": \"support\",\n \"description\": \"Answers \\\"where is my order?\\\" from your commerce backend.\",\n \"system_prompt\": \"You are a concise support agent that looks up order status and shares tracking links.\",\n \"model\": \"claude-sonnet-4-6\",\n \"temperature\": 0.4,\n \"tools_config\": [\n \"lookup_order_status\"\n ],\n \"conversation_starters\": [\n \"Where is my order?\"\n ],\n \"channels\": [\n \"web\",\n \"whatsapp\"\n ],\n \"tags\": [\n \"support\",\n \"ecommerce\"\n ]\n}"
response = http.request(request)
puts response.read_body{
"data": {
"template_id": "<string>",
"slug": "<string>",
"status": "pending",
"message": "<string>"
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z",
"docs_url": "<string>"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Body
application/json
Unique kebab-case identifier (lowercased on save).
Required range:
0 <= x <= 2⌘I