Visionaire Documentation
Search…
Nodeflux Visionaire
Visionaire Cloud
Overview
Getting Started
Payments
Fundamentals
APIs
Asynchronous
Face Enrollment
Face Recognition
Face Match with 2 Photos
Face Match with Enrollment
Face Mask
Face Demography (Beta)
License Plate Recognition
Planogram Compliance
SKU Recognition
People Density
Vehicle Density
Helmet Detection
Get Job Status
Synchronous V2
Synchronous V1 (Deprecated)
Changelogs
Legal Documents
Visionaire Docker Stream
Overview
Requirements
Installation Guide
Developer Guide
Vanilla Dashboard
Camera Configuration
Changelogs
Visionaire Docker Snapshot
Overview
Requirements
Installation
Image Guideline
APIs
Visionaire Cluster (Discontinue)
Overview
User Guide
Webhook API
Powered By
GitBook
Get Job Status
Make sure you already have configured your
Authentication
.
Run in postman
Nodeflux Visionaire Cloud
Nodeflux Visionaire Cloud
Send a GET request to
https://api.cloud.nodeflux.io/v1/jobs/{job_id}
. The
job_id
is the one you will receive when posting a job. For example:
1
{
2
"job"
:
{
3
"id"
:
"a-very-long-job-id"
,
// <--- this is the job_id you will use
4
"result"
:
{
...
}
5
},
6
"message"
:
"Job successfully submitted!"
,
7
"ok"
:
true
8
}
Copied!
Response Body
The response will be adjusted with what analytic the job you have
Face Match with 2 Photos
HTTP Mapping: 200 OK
1
{
2
"job"
:
{
3
"id"
:
"a-very-long-job-id"
,
4
"result"
:
{
5
"status"
:
"success"
,
6
"analytic_type"
:
"FACE_MATCH_LIVENESS"
,
7
"result"
:
[
8
{
9
"face_match"
:
{
10
"match"
:
true
,
11
"similarity"
:
0.8560543060302734
12
}
13
}
14
]
15
}
16
},
17
"message"
:
"Job successfully submitted!"
,
18
"ok"
:
true
19
}
Copied!
OCR KTP
HTTP Mapping: 200 OK
1
{
2
"job"
:
{
3
"id"
:
"a-very-long-job-id"
,
4
"result"
:
{
5
"status"
:
"success"
,
6
"analytic_type"
:
"OCR_KTP"
,
7
"result"
:
[
8
{
9
""
:
"JAKARTA SELATAN"
,
10
"NIK"
:
"123456789012346"
,
11
"Nama"
:
"JANE DOE"
,
12
"Agama"
:
"ISLAM"
,
13
"RT/RW"
:
"006 005"
,
14
"Alamat"
:
"JL ACME"
,
15
"Kel/Desa"
:
"DESA CONTOH"
,
16
"PROVINSI"
:
"PROVINSI CONTOH"
,
17
"Kecamatan"
:
"KECAMATAN CONTOH"
,
18
"Pekerjaan"
:
"KARYAWAN SWASTA"
,
19
"Gol. Darah"
:
"-"
,
20
"Jenis Kelamin"
:
"PEREMPUAN"
,
21
"Berlaku Hingga"
:
"21-12-2016"
,
22
"Kewarganegaraan"
:
"WNI"
,
23
"Tempat/Tgl Lahir"
:
"JAKARTA 21-12-1990"
,
24
"Status Perkawinan"
:
"BELUM KAWIN"
25
}
26
]
27
}
28
},
29
"message"
:
"Job successfully submitted!"
,
30
"ok"
:
true
31
}
Copied!
Face Liveness
HTTP Mapping: 200 OK
1
{
2
"job"
:
{
3
"id"
:
"a-very-long-job-id"
,
4
"result"
:
{
5
"status"
:
"success"
,
6
"analytic_type"
:
"FACE_LIVENESS"
,
7
"result"
:
[
8
{
9
"face_liveness"
:
{
10
"live"
:
true
,
11
"liveness"
:
0.8966461420059204
12
}
13
}
14
]
15
}
16
},
17
"message"
:
"Job successfully submitted!"
,
18
"ok"
:
true
19
}
Copied!
Face Match with Liveness
HTTP Mapping: 200 OK
1
{
2
"job"
:
{
3
"id"
:
"a-very-long-job-id"
,
4
"result"
:
{
5
"status"
:
"success"
,
6
"analytic_type"
:
"FACE_MATCH_LIVENESS"
,
7
"result"
:
[
8
{
9
"face_liveness"
:
{
10
"live"
:
true
,
11
"live_score"
:
0.845223
12
}
13
},
14
{
15
"face_match"
:
{
16
"match"
:
true
,
17
"smimilarity"
:
0.94731
18
}
19
}
20
],
21
}
22
},
23
"message"
:
"Job successfully submitted!"
,
24
"ok"
:
true
25
}
Copied!
Face Mask
HTTP Mapping: 200 OK
1
{
2
"job"
:
{
3
"id"
:
"<a-very-long-job-id>"
,
4
"result"
:
{
5
"status"
:
"success"
,
6
"analytic_type"
:
"FACE_MASK"
,
7
"result"
:
[
8
{
9
"face_mask"
:
[
10
{
11
"score"
:
"0.99999785"
,
12
"status"
:
"masked_face"
,
13
"bounding_box"
:
{
14
"top"
:
0.41969601666485823
,
15
"left"
:
0.5615215301513672
,
16
"width"
:
0.02165590922037763
,
17
"height"
:
0.04751050030743631
18
}
19
},
20
{
21
"score"
:
"0.9999969"
,
22
"status"
:
"masked_face"
,
23
"bounding_box"
:
{
24
"top"
:
0.6515047426576968
,
25
"left"
:
0.6214392979939779
,
26
"width"
:
0.02933553059895833
,
27
"height"
:
0.05995771620008683
28
}
29
}
30
]
31
}
32
]
33
}
34
},
35
"message"
:
"Face Mask Success"
,
36
"ok"
:
true
37
}
Copied!
Previous
Helmet Detection
Next
Synchronous V2
Last modified
4mo ago
Export as PDF
Copy link
Contents
Response Body
Face Match with 2 Photos
OCR KTP
Face Liveness
Face Match with Liveness
Face Mask