Skip to main content
POST
/
v1
/
projects
Create a project
curl --request POST \
  --url https://api.fotolabs.co/v1/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "233 Broadway, New York, NY",
  "templateId": "original"
}
'
{ "projectId": "ca5f09f7-6838-459c-ac0f-7be03c60de24", "name": "233 Broadway, New York, NY" }

Documentation Index

Fetch the complete documentation index at: https://docs.fotolabs.co/llms.txt

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

Authorizations

Authorization
string
header
required

API key with fl_ prefix, issued from the Fotolabs dashboard

Body

application/json
name
string
required

Property address or display name.

Maximum string length: 200
Example:

"233 Broadway, New York, NY"

templateId
enum<string>
default:original

Default AI enhancement style for this project. Can be overridden when calling process.

Available options:
original,
twilight,
virtual-stage

Response

Project created.

projectId
string<uuid>
required
Example:

"ca5f09f7-6838-459c-ac0f-7be03c60de24"

name
string
required
Example:

"233 Broadway, New York, NY"