Skip to main content
POST
/
faces
/
recluster
Re-run face clustering
curl --request POST \
  --url http://localhost:6699/api/v1/faces/recluster \
  --header 'Content-Type: application/json' \
  --header 'X-License-Key: <api-key>' \
  --data '
{
  "cache_dir": "<string>",
  "cluster_job_name": "<string>",
  "eps": 0.48,
  "min_samples": 5,
  "auto_detect_params": false,
  "clear_names": false
}
'
{
  "message": "<string>",
  "task_id": "<string>"
}

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
eps
number
default:0.48

Clustering sensitivity (lower = stricter grouping)

min_samples
integer
default:5

Minimum faces needed to form a cluster

auto_detect_params
boolean
default:false

Auto-tune eps and min_samples

clear_names
boolean
default:false

Clear all existing cluster names

Response

202 - application/json

Re-clustering started

message
string
task_id
string
Last modified on February 18, 2026