Skip to main content
GET
/
blocks
/
{block_id}
Get 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"
  }
}
Returns the full details for a block, including bounds, OCR text, and image URL.

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

block_id
string
required

Block ID

Response

Success

data
object
Example:
{
"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"
}