Skip to main content
POST
/
faces
/
clusters
/
faces
Get paginated cluster faces
curl --request POST \
  --url http://localhost:6699/api/v1/faces/clusters/faces \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "cluster_job_name": "<string>",
  "cluster_id": "<string>",
  "cluster_ids": [
    "<string>"
  ],
  "limit": 500,
  "offset": 0
}
'
{}

Authorizations

X-License-Key
string
header
required

Jumper Pro license key passed via header

Body

application/json
cache_dir
string
required
cluster_job_name
string
required
cluster_id
string

Single cluster ID

cluster_ids
string[]

Multiple cluster IDs (overrides cluster_id)

limit
integer
default:500
Required range: x <= 2000
offset
integer
default:0

Response

200 - application/json

Paginated face data

The response is of type object.

Last modified on February 18, 2026