- cURL
- Python
- JavaScript
curl --location 'https://api.scalewaveai.com/public-deployment/zero_shot_object_detection/base/v1' \
--header 'Content-Type: application/json' \
--header 'api-key: SCALEWAVEAI_API_KEY' \
--data '{
"image_url": "http://images.cocodataset.org/val2017/000000039769.jpg",
"class_labels": [
""
],
"webhook_url": null,
"threshold": 0.5,
"include_bounding_box_image": true
}'
import requests
import json
url = "https://api.scalewaveai.com/public-deployment/zero_shot_object_detection/base/v1"
payload = json.dumps({
"image_url": "http://images.cocodataset.org/val2017/000000039769.jpg",
"class_labels": [
""
],
"webhook_url": None,
"threshold": 0.5,
"include_bounding_box_image": True
})
headers = {
'Content-Type': 'application/json',
'api-key': 'SCALEWAVEAI_API_KEY',
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("api-key", "SCALEWAVEAI_API_KEY");
const raw = JSON.stringify({
"image_url": "http://images.cocodataset.org/val2017/000000039769.jpg",
"class_labels": [
""
],
"webhook_url": null,
"threshold": 0.5,
"include_bounding_box_image": true
});
var requestOptions = {
method: 'POST',
headers: myHeaders,
body: raw,
redirect: 'follow'
};
fetch("https://api.scalewaveai.com/public-deployment/zero_shot_object_detection/base/v1", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));
Choose Image Source
OR
OR
Sample Images







Help Us Improve Zero-Shot Object Detection
Your feedback drives our model development