cURL
curl --request GET \ --url https://api.cloudglue.dev/v1/face-match \ --header 'Authorization: Bearer <token>'
{ "object": "list", "total": 123, "limit": 123, "offset": 123, "data": [ { "job_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "status": "pending", "created_at": 123, "face_detection_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "frame_extraction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "file_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "source_face_bounding_box": { "height": 0.5, "width": 0.5, "top": 0.5, "left": 0.5 }, "match_count": 123 } ] }
List all face match jobs
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Number of face match jobs to return
1 <= x <= 100
Offset from the start of the face match jobs list
x >= 0
Face match jobs retrieved successfully
Object type, always 'list'
list
The total number of items
The number of items per page
The offset of the items
Show child attributes