Skip to main content
Version: 2.0.0

Create a project

This endpoint creates a project.

HTTP Request

POST https://app.resemble.ai/api/v2/projects
JSON Body ParametersTypeDescription
namestringName of the project
descriptionstringDescription of the project
is_publicbooleanWhether the project is public or not
is_collaborativebooleanWhether to allow collaboration features for this project
is_archivedbooleanWhether to archive the project

HTTP Response

{
"success": true,
"item": {
"uuid": <string>,
"name": <string>,
"description": <string>,
"is_public": <boolean>,
"is_collaborative": <boolean>,
"is_archived": <boolean>,
"created_at": <UTC Date>,
"updated_at": <UTC Date>,
}
}

Examples

NodeJS
1 2 3 4 5 6 7 8 9 10 11 import { Resemble } from '@resemble/node' Resemble.setApiKey('YOUR_API_TOKEN') await Resemble.v2.projects.create({ name: "Cooking Podcast", description: "Clips generated for our Thursday night cooking podcast", is_public: false, is_collaborative: true, is_archived: false })

Try it out

API Key:
JSON Body: