Skip to main content
POST
/
projects
Create project
curl --request POST \
  --url https://api.bedrock.cv/projects \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "City Tower Phase 2",
  "description": "30-story mixed-use development"
}
'
{
  "data": {
    "id": "prj_01JABCD123",
    "organization_id": "org_01JABCD123",
    "name": "City Tower Phase 2",
    "description": "30-story mixed-use development",
    "created_at": "2024-06-15T10:30:00Z",
    "updated_at": "2024-06-15T10:30:00Z"
  }
}
Create a new project to organize drawings and documents for a construction job.

What’s Next

After creating a project, you can:
  1. Upload files - Add specifications and documents
  2. Upload drawings - Add drawing PDFs for processing
  3. Compare revisions - Create overlays between drawing versions

Authorizations

Authorization
string
header
required

API key prefixed with sk_. Example: Authorization: Bearer sk_xxx

Headers

X-API-Version
string
default:2026-01-01

API version

Body

application/json
name
string
required
description
string

Response

Success

data
object
Example:
{
"id": "prj_01JABCD123",
"organization_id": "org_01JABCD123",
"name": "City Tower Phase 2",
"description": "30-story mixed-use development",
"created_at": "2024-06-15T10:30:00Z",
"updated_at": "2024-06-15T10:30:00Z"
}