Creates a new project, optionally seeded from a template.
Creates a project and returns it.
POST
/projectsBearer token — `Bearer dxb_live_…`.
The project's display name.
URL slug; generated from the name if omitted.
A project template id, e.g. `product-documentation`. Defaults to `blank`.
`public`, `private`, or `link`. Defaults to `private`.
Response
201Project created
409Slug already in use
cURL
curl --request POST \
--url https://api.doxbrix.io/v1/projects \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"slug": "<string>",
"template": "<string>",
"visibility": "<string>"
}'{ "id": "prj_01J8", "name": "Mobile SDK", "slug": "mobile-sdk", "visibility": "private" }