Growth Services
i-cue · Analytics
Growth Services API
Authentication
No authentication requiredFree to use with no key needed.
Sample Requests
GET
Get hyperparameters
Get entity global hyperparameters.
https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/i-cue.solutions/v1/hyperparameter";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Get all organizations
This is an iCUE only endpoint or Enterprise feature.
https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/entity";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET
Get all common Models
Returns models that are common for all Organizations
https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/i-cue.solutions/v1/administration/model";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Growth Services?
Growth Services is a Analytics API. Developers commonly use analytics APIs for:
- tracking product usage and user behaviour
- building custom reporting and BI dashboards
- measuring marketing and campaign performance
- running funnel, retention, and cohort analysis
- aggregating metrics from multiple data sources
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Growth Services is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide