Image
Training
Project
Create Project
POST
/
v1
/
projects
Copy
Ask AI
curl --request POST \
--url https://api.landing.ai/v1/projects \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"projectType": "classification"
}'
Copy
Ask AI
{
"data": {
"id": 123,
"name": "<string>",
"projectType": "classification",
"isActive": true,
"createdAt": "<string>"
}
}
Headers
Query Parameters
Body
application/json
Response
201
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.landing.ai/v1/projects \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"projectType": "classification"
}'
Copy
Ask AI
{
"data": {
"id": 123,
"name": "<string>",
"projectType": "classification",
"isActive": true,
"createdAt": "<string>"
}
}
Assistant
Responses are generated using AI and may contain mistakes.