Search runs
curl --request POST \
--url https://api.apisale.ai/v1/runs/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://api.apisale.ai/v1/runs/search"
payload = {}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.apisale.ai/v1/runs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Public Runs
Search runs
POST
/
v1
/
runs
/
search
Search runs
curl --request POST \
--url https://api.apisale.ai/v1/runs/search \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://api.apisale.ai/v1/runs/search"
payload = {}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch('https://api.apisale.ai/v1/runs/search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));Authorizations
API key: Key sk-xxx or Bearer sk-xxx
Body
application/json
The body is of type object.
Response
201 - undefined
