getBotPerformance
curl --request GET \
--url https://alphainsider.com/api/getBotPerformance \
--header 'Authorization: <authorization>'const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://alphainsider.com/api/getBotPerformance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getBotPerformance"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getBotPerformance",
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: <authorization>"
],
]);
$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://alphainsider.com/api/getBotPerformance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "",
"created_at": "2025-12-09T20:00:00.000Z"
},
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "start",
"created_at": "2025-12-09T21:00:00.000Z"
},
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "info",
"created_at": "2025-12-10T19:00:00.000Z"
}
]
}{
"success": false,
"response": "Request failed."
}{
"success": false,
"response": "Authentication failed."
}Bots
getBotPerformance
Get bot performance data.
GET
/
getBotPerformance
getBotPerformance
curl --request GET \
--url https://alphainsider.com/api/getBotPerformance \
--header 'Authorization: <authorization>'const options = {method: 'GET', headers: {Authorization: '<authorization>'}};
fetch('https://alphainsider.com/api/getBotPerformance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getBotPerformance"
headers = {"Authorization": "<authorization>"}
response = requests.get(url, headers=headers)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getBotPerformance",
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: <authorization>"
],
]);
$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://alphainsider.com/api/getBotPerformance"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "<authorization>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "",
"created_at": "2025-12-09T20:00:00.000Z"
},
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "start",
"created_at": "2025-12-09T21:00:00.000Z"
},
{
"bot_id": "h_zZfeqsX9o8hgB8DVc0P",
"portfolio_value": "100000.000000000000000",
"activity": "info",
"created_at": "2025-12-10T19:00:00.000Z"
}
]
}{
"success": false,
"response": "Request failed."
}{
"success": false,
"response": "Authentication failed."
}Headers
User API token.
Query Parameters
AlphaInsider bot identifier.
The number of intervals per tick.
The timeframe per tick.
Available options:
hour, day, week Start date.
End timestamp for the current period or range.
⌘I