Skip to main content
GET
/
projects
/
{project_id}
Get project
curl --request GET \
  --url https://api.bedrock.cv/projects/{project_id} \
  --header 'Authorization: Bearer <token>'
{
  "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"
  }
}
Returns the full details for a project.

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

Path Parameters

project_id
string
required

Project ID

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"
}