Endpoints
This document describes all the available endpoints for the Orba One API.
Last updated
Was this helpful?
This document describes all the available endpoints for the Orba One API.
Last updated
Was this helpful?
Extend and build your own custom platform using Orba One's available endpoints. We currently offer a Node.js REST API client, available on .
Creating your AuthKey
key header is simple and intuitive, simple and easy.
Get your ApiKey and Secret from within your .
Concatenate both values separated by a colon :
Encode the resulting concatenation in base64.
Append the AuthKey
field in your header request and send the encoded value.
POST
https://api.orbaone.com/api/v1/applicants/create
This endpoint allows you to create an Applicant.
string
Applicant's email, if provided
middleName
string
Middle name of the Applicant
lastName
string
Last name of the Applicant
firstName
string
First name of the Applicant
GET
https://api.orbaone.com/api/v1/applicants
Get all the applicants
search
string
The search string to find a specific Applicant.
pageSize
number
Amount of applicants per page (default: 50)
page
number
Current page of applicants (default: 1)
GET
https://api.orbaone.com/api/v1/applicants/<applicantId>
This endpoint takes a unique applicantId
and return the corresponding details.
applicantId
string
The unique ID of an Applicant.
POST
https://api.orbaone.com/api/v1/applicants/<applicantId>/reset
This endpoint resets an applicant's state, commonly used for reauthentication.
applicantId
string
The unique ID of an Applicant
GET
https://api.orbaone.com/api/v1/applicants/<applicantId>/verification_link
Create a verification link for a given applicant
applicantId
string
The unique ID of an Applicant
regenerate
boolean
Boolean to determine if the link should be regenrated
GET
https://api.orbaone.com/api/v1/applicants/<applicantId>/pep
This endpoint facilitates a Politically Exposed Person (PEP) scan on an Applicant.
applicantId
string
The unique ID of an Applicant
GET
https://api.orbaone.com/api/v1/applicants/<applicantId>/sanction
This endpoint facilitates a Sanction scan on an Applicant.
applicantId
string
The unique ID of an Applicant.
POST
https://api.orbaone.com/api/v1/scans/ocr
This endpoint facilitates an Optical Character Recognition (OCR) scan for a document.
referenceId
String
A ID or name used to retrieve a scanned document
documentType*
String
The type of document being scanned
documentSide
String
The side of the document being scanned
issuingCountryCode*
String
The country code for the country the document was issued in
documentImage*
Image
An image of the document to be scanned
GET
https://api.orbaone.com/api/v1/scans/ocr
The endpoint gets all the OCR scanned documents.
referenceId
String
An ID or name used to retrieve scanned document
dateFrom
Date
Returns scanned documents starting from this date
dateTo
Date
Returns scanned documents up to this date
pageNumber
Number
The current page of the scanned documents (default: 1)
pageSize
Number
The number of scanned documents per page
GET
https://api.orbaone.com/api/v1/scans/ocr/<id>
This endpoint takes a unique id
and returns the corresponding data.
id*
UUID
The unique id for a scanned document
POST
https://api.orbaone.com/api/v1/scans/facematch
This endpoint facilitates a face comparison for a document
referenceId
String
An ID or name used to retrieve face comparison
documentType*
String
The type of document being scanned
documentSide
String
The side of the document being scanned
issuingCountryCode*
String
The country code for the country the document was issued in
documentImage*
Image
An image of the document
selfieImage*
Image
An image of the owner of the document
GET
https://api.orbaone.com/api/v1/scans/facematch
This endpoints gets all the face comparisons
referenceId
String
An ID or name used to retrieve face comparison
dateFrom
Date
Returns face comparisons starting from this date
dateTo
Date
Returns face comparisons up to this date
pageNumber
Number
The current page of the face comparisons (default: 1)
pageSize
Number
The number of the face comparisons per page
GET
https://api.orbaone.com/api/v1/scans/facematch/<id>
This endpoint takes a unique id
and returns the corresponding data.
id
UUID
The unique ID for a face comparison