Skip to main content
GET
/
features
List features
curl --request GET \
  --url https://api.bedrock.cv/features \
  --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"
    }
  ],
  "_meta": {
    "next": "eyJpZCI6ImN1cnNvcl8xMjM0NTYiLCJjcmVhdGVkX2F0IjoiMjAyNC0wNi0xNVQxMDozMDowMFoifQ==",
    "prev": null,
    "limit": 1
  }
}
Returns a paginated list of features. Requires a block_id filter. Supports optional filtering by type, label, and parent feature.

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

Query Parameters

cursor
string

Pagination cursor

limit
integer
default:20

Number of items per page

Required range: 1 <= x <= 100
block_id
string
required

Filter by block (required)

type
string

Filter by feature type

label
string

Filter by label

parent_feature_id
string

Filter by parent feature

Response

Success

data
object[]
_meta
object