Create a project
const url = 'https://beta-api.plune.ai/v1/projects';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"name":"Mobile app"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://beta-api.plune.ai/v1/projects \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "name": "Mobile app" }'A name, and the caller is its owner (api.ts → createProject, the “New project…” dialog of the switcher). Nothing is copied into it — settings, tags and the steps database are per project and start empty. Put its id in X-Plune-Project to work in it; mint a token while standing in it to give CI one bound to it.
Authorizations
Section titled “Authorizations ”Request Body required
Section titled “Request Body required ”The body of POST /v1/projects and of PATCH /v1/projects/{id} alike — a project has a name and nothing else to set.
object
Example
{ "name": "Mobile app"}Responses
Section titled “ Responses ”Created — you are its owner
A project the caller is a member of, with their role in it — one row of GET /v1/projects.
object
What a member may do (B8-team). owner runs the project — members, roles, its name; member does everything else; reader is refused every write at the boundary, before a handler runs.
Example
{ "id": "9c4e7d10-0000-4000-8000-0000000000a4", "name": "Mobile app", "role": "owner", "createdAt": "2026-09-16T09:12:04.151Z"}Invalid body — a name is 1 to 100 characters
object
Example generated
{ "error": "example"}No / invalid token or session
Rate-limited: either the per-route throttle or a tenant quota. Retry-After carries the seconds until the window rolls over.
object
Example generated
{ "error": "example"}Headers
Section titled “Headers ”Seconds until the window rolls over