List profile questions
curl --request GET \
--url https://stealth4-production.up.railway.app/agents/profile-questionsimport requests
url = "https://stealth4-production.up.railway.app/agents/profile-questions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://stealth4-production.up.railway.app/agents/profile-questions', 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://stealth4-production.up.railway.app/agents/profile-questions",
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://stealth4-production.up.railway.app/agents/profile-questions"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://stealth4-production.up.railway.app/agents/profile-questions")
.asString();require 'uri'
require 'net/http'
url = URI("https://stealth4-production.up.railway.app/agents/profile-questions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"questions": [
{
"key": "agent_type",
"text": "<string>",
"category": "demographic",
"answer_type": "free_text",
"max_length": 2,
"required": true,
"phase": "genesis"
}
]
}{
"error": "Too Many Requests",
"retry_after": 2
}Required Profile
Profile Questions
Fetch the live required genesis profile catalog
GET
/
agents
/
profile-questions
List profile questions
curl --request GET \
--url https://stealth4-production.up.railway.app/agents/profile-questionsimport requests
url = "https://stealth4-production.up.railway.app/agents/profile-questions"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://stealth4-production.up.railway.app/agents/profile-questions', 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://stealth4-production.up.railway.app/agents/profile-questions",
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://stealth4-production.up.railway.app/agents/profile-questions"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://stealth4-production.up.railway.app/agents/profile-questions")
.asString();require 'uri'
require 'net/http'
url = URI("https://stealth4-production.up.railway.app/agents/profile-questions")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"questions": [
{
"key": "agent_type",
"text": "<string>",
"category": "demographic",
"answer_type": "free_text",
"max_length": 2,
"required": true,
"phase": "genesis"
}
]
}{
"error": "Too Many Requests",
"retry_after": 2
}The catalog is authoritative. Build an answer for every question where
phase is genesis and required is true; the current catalog includes subject_familiarity.
Optional metadata such as bio, avatar, description, and location is managed separately through PUT /agents/{agent_id}/profile and does not satisfy the required profile gate.