Get a face detection
Fetches one face’s details by ID (bounding box, assigned person, timestamps, thumbnail). Use when you already have a face_id.
Path Parameters
Face ID (with face_ prefix) to fetch. Obtain from list_faces or from the faces array on get_asset / list_assets responses.
Query Parameters
Library the face belongs to. Optional if the user has a single library; required when they have multiple.
Opt-in expansion fields. See list_faces for supported values. Accepts multiple include= query params or a single comma-delimited value.
Response
Successful Response
Represents a detected face in an asset with facial recognition data.
Unique face identifier with 'face_' prefix
ID of the asset containing this face
Face location as {x, y, w, h} coordinates in pixels
How this face was added: 'automatic' for detector-found faces, 'manual' for user-drawn face boxes.
automatic, manual When this face was detected and recorded
When this face record was last updated
ID of the person this face belongs to (if identified)
Detector confidence on a 0-1 scale; higher is more confident among faces detected under the same configuration (values are not comparable across detector generations). Null on legacy faces without a stored score and on manually added faces.
For video files, timestamp in milliseconds when face appears
Asset variants for this face: 'thumbnail' with face crop
Cluster-assignment diagnostics for this face. Populated only when include=cluster_assignment is requested on the faces endpoint; null otherwise. See ClusterAssignmentResponse for the shape.