post
https://api.autoreelapp.com/api/v1/create_project
Creates a project - a named container that videos can be linked to via create_video's project field. Useful for organizing videos into groups instead of everything landing in a single default project named after your API key.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Authentication
Authorization: Bearer <YOUR_API_KEY>
Request Body Fields
| Field | Type | Required | Description |
|---|---|---|---|
name | string | Yes | Display name for the project. Max 255 characters. |
Example Request Body
{
"name": "Maple Street Listings"
}Response
Returns the created project object.
| Field | Type | Description |
|---|---|---|
uuid | string | Unique ID for the project |
| name | string | Display name of the project, as provided in the request |
created_at | string | Timestamp when the project was created |
Example
{
"uuid": "b1f2c3d4-5678-4abc-9def-0123456789ab",
"name": "Maple Street Listings",
"created_at": "2026-07-11T09:30:00.123Z"
}