Authentication
Get an Authroization Bearer Token.
Base URL
sdk.faceki.comToken Generation End Point
https://sdk.faceki.com/auth/api/generate-tokenAuthentication for the Faceki API is achieved through token-based authentication. To authenticate requests made to the API, you must include an API token in the Authorization of your requests.

POST https://sdk.faceki.com/auth/api/generate-token
Headers
clientSecret*
String
clientSecret will be found in the integration section.
Example: "clientSecret":"00nl0cuq780ur007spqspa94kq6rkn1fap1e0kdre7gdl97lvspk".
clientId*
String
(string, required) Client Id from integration settings.
Example: "client_id":"0NTS4CBV8MVII02VGVSPICB00".
Content-Type
String
application/json
"responseCode": 0,
"data": {
"access_token": "<Your API Token>",
"expires_in": 3600,
"token_type": "Bearer"
}
}{
"clientSecret": ""
}{
"status": false,
"message": "client id is required",
"statusCode": 422,
"data": {}
}Usage Policy:
Token Expiry: Tokens must be regenerated only after they expire. The default expiration time is 3600 seconds (1 hour).
Billing Notice: For high-volume requests, additional charges will apply based on the number of requests made per day.
Please ensure compliance to avoid service interruptions or unexpected billing.
Last updated