Queue an AI review
curl --request POST \
--url https://api.next.orenda.finance/v1/ai-reviews \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"targetId": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({targetId: '<string>'})
};
fetch('https://api.next.orenda.finance/v1/ai-reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/ai-reviews"
payload = { "targetId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"reviewId": "<string>",
"status": "QUEUED"
}
}{
"success": false,
"code": "<string>",
"message": "<string>"
}{
"success": false,
"code": "<string>",
"message": "<string>"
}API Reference
Queue an AI review
Enqueues an AI compliance review for a target (e.g. an application). The request is deliberately minimal — schema selection is automatic (derived from the target’s onboarding-flow review binding), and model + token budget are server-side config. A re-review is simply another POST (each run is a fresh reviewId).
POST
/
v1
/
ai-reviews
Queue an AI review
curl --request POST \
--url https://api.next.orenda.finance/v1/ai-reviews \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"targetId": "<string>"
}
'const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({targetId: '<string>'})
};
fetch('https://api.next.orenda.finance/v1/ai-reviews', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.next.orenda.finance/v1/ai-reviews"
payload = { "targetId": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"success": true,
"data": {
"reviewId": "<string>",
"status": "QUEUED"
}
}{
"success": false,
"code": "<string>",
"message": "<string>"
}{
"success": false,
"code": "<string>",
"message": "<string>"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Program to operate on. Back-office convention — a BO token is not scoped to one program.
Environment selector; defaults to production (false).
Available options:
true, false Body
application/json
⌘I