getUsers
curl --request GET \
--url https://alphainsider.com/api/getUsersconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getUsers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getUsers"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getUsers",
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://alphainsider.com/api/getUsers"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"user_id": "user_1",
"info": {
"bio": "",
"x": "",
"website": "",
"youtube": "",
"telegram": ""
},
"updated_at": "2024-10-15T19:34:54.549Z",
"created_at": "2024-08-30T13:40:27.343Z",
"post_count": "1",
"like_count": "0",
"subscriber_count": "0",
"strategy_count": "5"
}
]
}{
"success": false,
"response": "Request failed."
}Users
getUsers
Get public user information.
GET
/
getUsers
getUsers
curl --request GET \
--url https://alphainsider.com/api/getUsersconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getUsers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getUsers"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getUsers",
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://alphainsider.com/api/getUsers"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{
"success": true,
"response": [
{
"user_id": "user_1",
"info": {
"bio": "",
"x": "",
"website": "",
"youtube": "",
"telegram": ""
},
"updated_at": "2024-10-15T19:34:54.549Z",
"created_at": "2024-08-30T13:40:27.343Z",
"post_count": "1",
"like_count": "0",
"subscriber_count": "0",
"strategy_count": "5"
}
]
}{
"success": false,
"response": "Request failed."
}Query Parameters
Array of user IDs.
Maximum array length:
100AlphaInsider user identifier.
⌘I