Skip to main content
POST
/
projects
Create a blank project
curl --request POST \
  --url https://faces.app/api/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "projectId": "<string>",
  "projectSlug": "<string>",
  "projectVersionId": "<string>",
  "editorUrl": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.faces.app/llms.txt

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

Authorizations

Authorization
string
header
required

API key with "faces_" prefix. Create one at Settings > Developers.

Body

application/json
name
string

Optional display name. Defaults to 'Untitled'.

Required string length: 1 - 200

Response

Project created

projectId
string
required
projectSlug
string
required
projectVersionId
string
required
editorUrl
string<uri>
required