Skip to main content
POST
/
v1
/
projects
Create a new project
curl --request POST \
  --url https://api.example.com/v1/projects \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "data": {
    "name": "<string>",
    "id": "<string>",
    "description": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://arizeai-433a7140.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
name
string
required
Minimum string length: 1
description
string | null

Response

The newly created project

data
Project · object
required