Public
Documentation Settings

Kairos API

Integrate Face Recognition via our cloud API, or host Kairos on your own servers for ultimate control of data, security, and privacy—start creating safer, more accessible customer experiences today.

POSTenroll

https://api.kairos.com/enroll

Takes a photo, finds the faces within it, and stores the faces into a gallery you create.

Docs: https://kairos.com/docs/api/#post-enroll

HEADERS
Content-Type

application/json

app_id

607c9ae9

app_key

a18e843623620bb0b9afa6287eb360dd

Bodyraw
{
	"image": "https://media.kairos.com/test1.jpg",
	"gallery_name": "my-gallery-ea17",
	"subject_id": "elizabeth"
}

POSTverify

https://api.kairos.com/verify

Takes a photo, finds the face within it, and tries to compare it against a face you have already enrolled into a gallery.

Docs: https://kairos.com/docs/api/#post-verify

HEADERS
Content-Type

application/json

app_id

607c9ae9

app_key

a18e843623620bb0b9afa6287eb360dd

Bodyraw
{
	"image": "https://media.kairos.com/test1.jpg",
	"gallery_name": "my-gallery-ea17",
	"subject_id": "elizabeth"
}

POSTrecognize

https://api.kairos.com/recognize

Takes a photo, finds the faces within it, and tries to match them against the faces you have already enrolled into a gallery.

Docs: https://kairos.com/docs/api/#post-recognize

HEADERS
Content-Type

application/json

app_id

607c9ae9

app_key

a18e843623620bb0b9afa6287eb360dd

Bodyraw
{
	"image": "https://media.kairos.com/test1.jpg",
	"gallery_name": "my-gallery-ea17"
}

POSTdetect

https://api.kairos.com/detect

Takes a photo and returns the facial features it finds.

Docs: https://kairos.com/docs/api/#post-detect

HEADERS
Content-Type

application/json

app_id

607c9ae9

app_key

a18e843623620bb0b9afa6287eb360dd

Bodyraw
{
	"image": "https://media.kairos.com/test1.jpg"
}
Loading