Skip to main content
GET
/
video-detections
/
file
/
{id}
GET /video-detections/file/{id}
curl --request GET \
  --url https://api.indoralabs.com/video-detections/file/{id} \
  --header 'x-api-key: <api-key>'
{
  "detections": [
    {
      "id": "c85a3d71-fec9-44b7-9f25-930da5f04c27",
      "tenant_id": "743db90f-7e76-49f7-8d4e-5f42a16efc06",
      "file_id": "de13d372-a870-4eea-b975-9060d442f38c",
      "case_id": null,
      "doc_id": "session-xyz",
      "detections": [],
      "created_at": "2025-09-07T13:48:43.927-05:00"
    },
    {
      "id": "37c1c024-2ecf-4926-b1b3-1e4ed445f3b2",
      "tenant_id": "743db90f-7e76-49f7-8d4e-5f42a16efc06",
      "file_id": "de13d372-a870-4eea-b975-9060d442f38c",
      "case_id": null,
      "doc_id": "session-xyz",
      "detections": [
        {
          "frame": 123,
          "ts": 4.1,
          "label": "Face",
          "confidence": 0.94,
          "bbox": {
            "x": 512,
            "y": 208,
            "w": 128,
            "h": 128
          }
        }
      ],
      "created_at": "2025-10-13T03:12:00.000-05:00"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.indoralabs.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Path Parameters

id
string<uuid>
required

The unique File ID whose detection runs you want to list.

Response

Successfully retrieved all detection runs tied to the specified file. The response includes the raw detection run records as stored in the system.

detections
object[]
required

Array of detection run records for the provided file.