Skip to main content
POST
/
orgs
/
{org_id}
/
projects
cURL
curl --request POST \
  --url https://api.timbal.ai/orgs/{org_id}/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "origin": {
    "project_id": 123,
    "type": "Template"
  },
  "name": "<string>"
}
'
{
  "id": 123,
  "name": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.timbal.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required

Body

application/json
origin
object
required
name
string | null

Response

200 - application/json

Project created successfully

id
integer<int64>
required
name
string
required