get
https://api.autoreelapp.com/api/v1/get_projects
Returns all projects for the authenticated account — those created via /create_project, plus your API key's default project if any videos have been created without an explicit project.
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Authentication
Authorization: Bearer <YOUR_API_KEY>
Response
| Field | Type | Description |
|---|---|---|
projects | Project[] | The user's projects, ordered by creation date (newest first). |
Project
| 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
{
"projects": [
{
"uuid": "b1f2c3d4-5678-4abc-9def-0123456789ab",
"name": "Maple Street Listings",
"created_at": "2026-07-11T09:30:00.123Z"
}
]
}