Get data endpoint run
curl --request GET \
--url https://api.aireserve.com/v1/monid/runs/{run_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/monid/runs/{run_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/monid/runs/{run_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Data endpoints
Get data endpoint run
Poll an async data endpoint run by its AI Reserve job_id. Runs are scoped to your organization — other organizations’ run ids answer 404. The response is the completed monid run body plus the aireserve envelope; aireserve.status is succeeded or failed once terminal.
GET
/
v1
/
monid
/
runs
/
{run_id}
Get data endpoint run
curl --request GET \
--url https://api.aireserve.com/v1/monid/runs/{run_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.aireserve.com/v1/monid/runs/{run_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.aireserve.com/v1/monid/runs/{run_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
Your AI Reserve API key (aireserve_api_…) from the API Keys page in the portal (https://portal.aireserve.com/keys).
Path Parameters
Response
200
Default Response