curl --request GET \
--url https://api.bedrock.orinlabs.org/api/cloud/agents/{id}/ \
--header 'Authorization: <api-key>'import requests
url = "https://api.bedrock.orinlabs.org/api/cloud/agents/{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.bedrock.orinlabs.org/api/cloud/agents/{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.bedrock.orinlabs.org/api/cloud/agents/{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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bedrock.orinlabs.org/api/cloud/agents/{id}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://api.bedrock.orinlabs.org/api/cloud/agents/{id}/")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bedrock.orinlabs.org/api/cloud/agents/{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{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organization": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_name": "<string>",
"template_name": "<string>",
"name": "<string>",
"model": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"adapters": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"template": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tags": [
"<string>"
],
"timezone": "<string>",
"system_prompt": "<string>",
"sleep_until": "2023-11-07T05:31:56Z",
"email_alias": "<string>",
"status": "running",
"run_started_at": "2023-11-07T05:31:56Z",
"last_wake_reason": "<string>",
"last_wake_interrupted_sleep_until": "2023-11-07T05:31:56Z",
"max_turns": -1,
"max_sleep_hours": 1073741823,
"harness_git_ref": "<string>",
"reasoning_effort": "none",
"debounce_window_seconds": 1073741823,
"vapi_voice_id": "<string>",
"purpose": "production",
"parent": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Get Agent
curl --request GET \
--url https://api.bedrock.orinlabs.org/api/cloud/agents/{id}/ \
--header 'Authorization: <api-key>'import requests
url = "https://api.bedrock.orinlabs.org/api/cloud/agents/{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.bedrock.orinlabs.org/api/cloud/agents/{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.bedrock.orinlabs.org/api/cloud/agents/{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;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.bedrock.orinlabs.org/api/cloud/agents/{id}/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<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://api.bedrock.orinlabs.org/api/cloud/agents/{id}/")
.header("Authorization", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bedrock.orinlabs.org/api/cloud/agents/{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{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"organization": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"parent_name": "<string>",
"template_name": "<string>",
"name": "<string>",
"model": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"adapters": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"template": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"tags": [
"<string>"
],
"timezone": "<string>",
"system_prompt": "<string>",
"sleep_until": "2023-11-07T05:31:56Z",
"email_alias": "<string>",
"status": "running",
"run_started_at": "2023-11-07T05:31:56Z",
"last_wake_reason": "<string>",
"last_wake_interrupted_sleep_until": "2023-11-07T05:31:56Z",
"max_turns": -1,
"max_sleep_hours": 1073741823,
"harness_git_ref": "<string>",
"reasoning_effort": "none",
"debounce_window_seconds": 1073741823,
"vapi_voice_id": "<string>",
"purpose": "production",
"parent": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}Authorizations
Token-based authentication with required prefix "Token"
Path Parameters
A UUID string identifying this Agent.
Response
255255255255Custom email alias for the agent's AgentMail inbox (e.g. 'support' becomes support@domain)
255running- Runningsleeping- Sleepingarchived- Archived
running, sleeping, archived 64-2147483648 <= x <= 2147483647Optional cap on how long the agent may sleep, in hours. When set, each harness run is started with --max-utc-sleep = now + this many hours, and sleep requests past that moment are clamped.
0 <= x <= 2147483647Optional git ref (branch/tag/commit) for harness runs. Null = latest main at dispatch time.
255none- Noneminimal- Minimallow- Lowmedium- Mediumhigh- Highxhigh- Extra high
none, minimal, low, medium, high, xhigh Per-agent override for the turn-boundary debounce window (seconds). Leave blank to inherit from the template.
0 <= x <= 2147483647Unused: VAPI calls now use the gpt-realtime-2 model, which only supports a fixed set of OpenAI voices and doesn't support per-agent voice overrides. This field has no effect on call behavior.
255production- Productioneval- Evaldev- Dev
production, eval, dev