Discover data endpoints
curl --request POST \
--url https://api.aireserve.com/v1/monid/discover \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"limit": 20,
"minScore": 1
}
'import requests
url = "https://api.aireserve.com/v1/monid/discover"
payload = {
"query": "<string>",
"limit": 20,
"minScore": 1
}
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({query: '<string>', limit: 20, minScore: 1})
};
fetch('https://api.aireserve.com/v1/monid/discover', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Data endpoints
Discover data endpoints
Search monid.ai’s marketplace of third-party data endpoints (web scrapers, contact and company enrichment, search) in natural language. Free — no run is executed. The response is monid’s own discover body: each result names the provider, endpoint, and price you pass to inspect or run.
POST
/
v1
/
monid
/
discover
Discover data endpoints
curl --request POST \
--url https://api.aireserve.com/v1/monid/discover \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"query": "<string>",
"limit": 20,
"minScore": 1
}
'import requests
url = "https://api.aireserve.com/v1/monid/discover"
payload = {
"query": "<string>",
"limit": 20,
"minScore": 1
}
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({query: '<string>', limit: 20, minScore: 1})
};
fetch('https://api.aireserve.com/v1/monid/discover', 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