curl --request GET \
--url https://api.bedrock.cv/blocks/{block_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "blk_01JABCD123",
"sheet_id": "sht_01JABCD123",
"type": "PLAN",
"uri": "gs://bedrock-files/projects/prj_01JABCD123/blocks/blk_01JABCD123.png",
"bounds": {
"x": 120,
"y": 80,
"width": 2400,
"height": 1800
},
"ocr": null,
"description": "First floor architectural plan",
"created_at": "2024-06-16T14:10:00Z"
}
}Retrieve details for a specific block.
curl --request GET \
--url https://api.bedrock.cv/blocks/{block_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "blk_01JABCD123",
"sheet_id": "sht_01JABCD123",
"type": "PLAN",
"uri": "gs://bedrock-files/projects/prj_01JABCD123/blocks/blk_01JABCD123.png",
"bounds": {
"x": 120,
"y": 80,
"width": 2400,
"height": 1800
},
"ocr": null,
"description": "First floor architectural plan",
"created_at": "2024-06-16T14:10:00Z"
}
}API key prefixed with sk_. Example: Authorization: Bearer sk_xxx
API version
Block ID
Success
Show child attributes
{
"id": "blk_01JABCD123",
"sheet_id": "sht_01JABCD123",
"type": "PLAN",
"uri": "gs://bedrock-files/projects/prj_01JABCD123/blocks/blk_01JABCD123.png",
"bounds": {
"x": 120,
"y": 80,
"width": 2400,
"height": 1800
},
"ocr": null,
"description": "First floor architectural plan",
"created_at": "2024-06-16T14:10:00Z"
}