Inspect data endpoint
curl --request POST \
--url https://api.aireserve.com/v1/monid/inspect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"provider": "<string>",
"endpoint": "<string>"
}
'import requests
url = "https://api.aireserve.com/v1/monid/inspect"
payload = {
"provider": "<string>",
"endpoint": "<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({provider: '<string>', endpoint: '<string>'})
};
fetch('https://api.aireserve.com/v1/monid/inspect', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Data endpoints
Inspect data endpoint
Return a data endpoint’s input schema, documentation, and price. Free — no run is executed. Pass the returned price object into POST /v1/monid/run to size the wallet reserve exactly.
POST
/
v1
/
monid
/
inspect
Inspect data endpoint
curl --request POST \
--url https://api.aireserve.com/v1/monid/inspect \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"provider": "<string>",
"endpoint": "<string>"
}
'import requests
url = "https://api.aireserve.com/v1/monid/inspect"
payload = {
"provider": "<string>",
"endpoint": "<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({provider: '<string>', endpoint: '<string>'})
};
fetch('https://api.aireserve.com/v1/monid/inspect', 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).
Body
application/json
Response
200
Default Response