Skip to main content
POST
/
api
/
v1
/
dev
/
projects
Create project
curl --request POST \
  --url https://api.autype.com/api/v1/dev/projects \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "My Project",
  "description": "Project description"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "visibility": "<string>",
  "createdAt": "2023-11-07T05:31:56Z"
}

Authorizations

X-API-Key
string
header
required

API Key (starts with ak_...)

Body

application/json
name
string
required

Project name

Example:

"My Project"

description
string
Example:

"Project description"

Response

Project created

id
string
required

Project ID

name
string
required

Project name

visibility
string
required

Project visibility (always PUBLIC for API-created projects)

createdAt
string<date-time>
required