Skip to main content
Version: 1.0.0

Create a new Project

Creates a new Project. This endpoint expects valid JSON with a data attribute that represents the Project resource.

HTTP Request

POST https://app.resemble.ai/api/v1/projects

Include the project resource in the body. See the project resource definition page.

HTTP Response

{
"status": "OK",
"uuid": "123aeb"
}

Examples

Remember

Make sure you replace YOUR_API_TOKEN with your own!

cURL

curl --request POST "https://app.resemble.ai/api/v1/projects" \
-H "Authorization: Token token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
--data '<project_resource>'