Get Deployments
curl --request GET \
--url https://api.landing.ai/v1/projects/{project_id}/deploymentsimport requests
url = "https://api.landing.ai/v1/projects/{project_id}/deployments"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.landing.ai/v1/projects/{project_id}/deployments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"predictionUrl": "<string>",
"name": "<string>",
"modelId": "<string>",
"threshold": 123
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Deployment
Get Deployments
GET
/
v1
/
projects
/
{project_id}
/
deployments
Get Deployments
curl --request GET \
--url https://api.landing.ai/v1/projects/{project_id}/deploymentsimport requests
url = "https://api.landing.ai/v1/projects/{project_id}/deployments"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.landing.ai/v1/projects/{project_id}/deployments', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"predictionUrl": "<string>",
"name": "<string>",
"modelId": "<string>",
"threshold": 123
}
]
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}⌘I

