Skip to main content
GET
/
v1
/
superagents
/
{agent_id}
Get SuperAgent
curl --request GET \
  --url https://api.gigabrain.gg/v1/superagents/{agent_id} \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.gigabrain.gg/v1/superagents/{agent_id}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.gigabrain.gg/v1/superagents/{agent_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.gigabrain.gg/v1/superagents/{agent_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: Bearer <token>"
],
]);

$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.gigabrain.gg/v1/superagents/{agent_id}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

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.gigabrain.gg/v1/superagents/{agent_id}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.gigabrain.gg/v1/superagents/{agent_id}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "agent_id": "a1b2c3d4-5678-90ab-cdef-1234567890ab",
  "name": "ETH Scalper",
  "description": "Short-term ETH momentum trades",
  "status": "running",
  "model": "gpt-4o",
  "created_at": "2026-03-15T10:00:00Z"
}
{
"statusCode": 401,
"message": "Invalid or revoked API key"
}
{
"statusCode": 404,
"message": "Agent not found"
}
{
"statusCode": 429,
"message": "Rate limit exceeded",
"retryAfter": 45,
"resetAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Your Gigabrain API key. Get one at https://gigabrain.gg/profile?tab=api. Format: gb_sk_...

Path Parameters

agent_id
string<uuid>
required

The SuperAgent's unique identifier

Response

Agent details

SuperAgent details

agent_id
string
name
string
description
string | null
status
string

running, paused, stopped, etc.

model
string | null
created_at
string | null