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

