POST/api/v1/factor/generate
Generate Factor
Generate a custom on-chain factor from a natural language prompt. Accepts a text prompt describing the desired factor (e.g., "ratio of 1y+ HODL supply to total supply, smoothed 30d"), validates feasibility against available BRK metrics, and returns the computed factor with backtested performance. Currently a placeholder — will be activated when BRK node indexation completes.
Authentication
This endpoint requires the X-API-Key header or a valid Clerk JWT. Accepted schemes: HTTPBearer.
See Authentication for details.
Responses
| Status | Description | Schema |
|---|---|---|
200 | Successful Response | FactorGenerateComingSoonResponse |
See the standard error codes documented in the Error codes.
Code samples
Three ready-to-paste implementations. Replace $TRINITY_API_KEY with your API key (generated from the dashboard under Profile → API keys).
cURL
curl -X POST \
'https://api.trinityinsights.io/api/v1/factor/generate' \
-H 'X-API-Key: $TRINITY_API_KEY'Python
import os
import requests
BASE = "https://api.trinityinsights.io"
headers = {
"X-API-Key": os.environ["TRINITY_API_KEY"],
}
response = requests.post(f"{BASE}/api/v1/factor/generate", headers=headers, timeout=10)
response.raise_for_status()
data = response.json()JavaScript
const apiKey = process.env.TRINITY_API_KEY;
const response = await fetch(
"https://api.trinityinsights.io/api/v1/factor/generate",
{
method: "POST",
headers: {
"X-API-Key": apiKey,
},
},
);
if (!response.ok) {
throw new Error(`HTTP ${response.status}`);
}
const data = await response.json();Institutional disclaimer
Trinity Insights is an educational and analytical tool. Values returned by this endpoint do not constitute investment advice. Trinity Insights is not a Crypto-Asset Service Provider (CASP) registered under MiCA Regulation (EU) 2023/1114. See the full disclaimer.