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

