Skip to main content
GET
/
features
/
{feature_id}
Get 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"
  }
}
Returns the full details for a feature, including bounds geometry, confidence, and metadata.

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

feature_id
string
required

Feature ID

Response

Success

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