curl --request POST \
--url https://api.opper.ai/v3/compat/v1/systemone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"questions": {},
"state": "<string>"
}
'import requests
url = "https://api.opper.ai/v3/compat/v1/systemone"
payload = {
"model": "<string>",
"questions": {},
"state": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({model: '<string>', questions: {}, state: '<string>'})
};
fetch('https://api.opper.ai/v3/compat/v1/systemone', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"answers": {},
"model": "<string>",
"usage": {
"input_tokens": 1,
"output_tokens": 1
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}System One evaluation
TypeSafe-compatible synchronous evaluation. Send model, state and named typed questions (noul, choice, score). Native model names such as jev-latest resolve to the TypeSafe catalog endpoint; fully-qualified typesafe/... IDs pin that endpoint. Returns TypeSafe’s native model, answers and token usage, preserving probabilities, confidence and score legends. Uses a project-scoped Opper API key, Comply policies and provider entitlements. Cost and generation ID are returned in headers. Streaming, chat generation and tool calling are unsupported.
curl --request POST \
--url https://api.opper.ai/v3/compat/v1/systemone \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"model": "<string>",
"questions": {},
"state": "<string>"
}
'import requests
url = "https://api.opper.ai/v3/compat/v1/systemone"
payload = {
"model": "<string>",
"questions": {},
"state": "<string>"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({model: '<string>', questions: {}, state: '<string>'})
};
fetch('https://api.opper.ai/v3/compat/v1/systemone', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"answers": {},
"model": "<string>",
"usage": {
"input_tokens": 1,
"output_tokens": 1
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
},
"meta": {}
}Authorizations
API key authentication. Pass your API key as a Bearer token.
Headers
Function name for tracing and project-level guardrail function-scope filtering.
Parent span ID for distributed tracing context.
Comma-separated key:value usage-attribution tags (e.g. tenant:acme,project:demo, max 8). Recorded on the generation's billing/metrics rows; group spend by any key via GET /v2/analytics/usage?group_by=. Header-borne twin of the /v3/session URL prefix tags (which win per key when both are present); opper.-prefixed keys and session_id are reserved. Malformed values return 400.