curl --request GET \
--url https://api.bedrock.cv/features/{feature_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "ftr_01JABCD123",
"block_id": "blk_01JABCD100",
"parent_feature_id": null,
"type": "door",
"label": "104",
"bounds": {
"type": "bbox",
"xmin": 450,
"ymin": 320,
"xmax": 480,
"ymax": 350
},
"confidence": 0.94,
"uri": "https://storage.bedrock.cv/features/ftr_01JABCD123.png",
"ocr": null,
"description": "Door 104, single leaf, opening into Room 201",
"metadata": {
"fire_rating": "45-min",
"material": "HM"
},
"created_at": "2024-06-16T14:15:00Z",
"updated_at": "2024-06-16T14:15:00Z"
}
}Retrieve details for a specific feature.
curl --request GET \
--url https://api.bedrock.cv/features/{feature_id} \
--header 'Authorization: Bearer <token>'{
"data": {
"id": "ftr_01JABCD123",
"block_id": "blk_01JABCD100",
"parent_feature_id": null,
"type": "door",
"label": "104",
"bounds": {
"type": "bbox",
"xmin": 450,
"ymin": 320,
"xmax": 480,
"ymax": 350
},
"confidence": 0.94,
"uri": "https://storage.bedrock.cv/features/ftr_01JABCD123.png",
"ocr": null,
"description": "Door 104, single leaf, opening into Room 201",
"metadata": {
"fire_rating": "45-min",
"material": "HM"
},
"created_at": "2024-06-16T14:15:00Z",
"updated_at": "2024-06-16T14:15:00Z"
}
}API key prefixed with sk_. Example: Authorization: Bearer sk_xxx
API version
Feature ID
Success
Show child attributes
{
"id": "ftr_01JABCD123",
"block_id": "blk_01JABCD100",
"parent_feature_id": null,
"type": "door",
"label": "104",
"bounds": {
"type": "bbox",
"xmin": 450,
"ymin": 320,
"xmax": 480,
"ymax": 350
},
"confidence": 0.94,
"uri": "https://storage.bedrock.cv/features/ftr_01JABCD123.png",
"ocr": null,
"description": "Door 104, single leaf, opening into Room 201",
"metadata": { "fire_rating": "45-min", "material": "HM" },
"created_at": "2024-06-16T14:15:00Z",
"updated_at": "2024-06-16T14:15:00Z"
}