getAccountTiers
curl --request GET \
--url https://alphainsider.com/api/getAccountTiersconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getAccountTiers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getAccountTiers"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getAccountTiers",
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/getAccountTiers"
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": [
{
"product_id": "7wswTAd1xbDAEQkPhbBn6",
"type": "standard",
"timeframe": "month",
"level": 0,
"name": "Standard Account Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 50,
"max_strategies": 5,
"max_subscriptions": 10,
"max_bots": 0
},
"price": 0
},
{
"product_id": "qkV9qPfpxr4wWMaZKprdI",
"type": "pro",
"timeframe": "month",
"level": 1,
"name": "Pro Account Monthly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 500,
"max_strategies": 50,
"max_subscriptions": 100,
"max_bots": 2
},
"price": 5000
},
{
"product_id": "tlEuVShrHFFJtceRjEYxm",
"type": "pro",
"timeframe": "year",
"level": 2,
"name": "Pro Account Yearly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 500,
"max_strategies": 50,
"max_subscriptions": 100,
"max_bots": 2
},
"price": 52800
},
{
"product_id": "x70U0yrF8y1FcalgGutQe",
"type": "premium",
"timeframe": "month",
"level": 3,
"name": "Premium Account Monthly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 5000,
"max_strategies": 500,
"max_subscriptions": 1000,
"max_bots": 4
},
"price": 10000
},
{
"product_id": "7fhHPXozPsaIVnXLeuTrD",
"type": "premium",
"timeframe": "year",
"level": 4,
"name": "Premium Account Yearly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 5000,
"max_strategies": 500,
"max_subscriptions": 1000,
"max_bots": 4
},
"price": 105600
}
]
}{
"success": false,
"response": "Request failed."
}Subscriptions
getAccountTiers
Get all account subscription tiers.
GET
/
getAccountTiers
getAccountTiers
curl --request GET \
--url https://alphainsider.com/api/getAccountTiersconst options = {method: 'GET'};
fetch('https://alphainsider.com/api/getAccountTiers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://alphainsider.com/api/getAccountTiers"
response = requests.get(url)
print(response.text)<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://alphainsider.com/api/getAccountTiers",
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/getAccountTiers"
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": [
{
"product_id": "7wswTAd1xbDAEQkPhbBn6",
"type": "standard",
"timeframe": "month",
"level": 0,
"name": "Standard Account Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 50,
"max_strategies": 5,
"max_subscriptions": 10,
"max_bots": 0
},
"price": 0
},
{
"product_id": "qkV9qPfpxr4wWMaZKprdI",
"type": "pro",
"timeframe": "month",
"level": 1,
"name": "Pro Account Monthly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 500,
"max_strategies": 50,
"max_subscriptions": 100,
"max_bots": 2
},
"price": 5000
},
{
"product_id": "tlEuVShrHFFJtceRjEYxm",
"type": "pro",
"timeframe": "year",
"level": 2,
"name": "Pro Account Yearly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 500,
"max_strategies": 50,
"max_subscriptions": 100,
"max_bots": 2
},
"price": 52800
},
{
"product_id": "x70U0yrF8y1FcalgGutQe",
"type": "premium",
"timeframe": "month",
"level": 3,
"name": "Premium Account Monthly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 5000,
"max_strategies": 500,
"max_subscriptions": 1000,
"max_bots": 4
},
"price": 10000
},
{
"product_id": "7fhHPXozPsaIVnXLeuTrD",
"type": "premium",
"timeframe": "year",
"level": 4,
"name": "Premium Account Yearly Subscription",
"apiTokenExpire": 31536000000,
"limits": {
"new_order": 5000,
"max_strategies": 500,
"max_subscriptions": 1000,
"max_bots": 4
},
"price": 105600
}
]
}{
"success": false,
"response": "Request failed."
}⌘I