- Introdução
- Consumindo a API
- Características da API
- Mensagens de Erro
- Material de Apoio
- Authentication
- Address Parsing
- Billing/DailySummary
- Content Classification
- Content Compare
- Content Extraction
- Content Extraction Async
- Content Extraction Distance
- Content Fullreader
- Enrichment
- Facematch
- Generative Content Extraction
- Image Properties
- Image Reporting - Continuous Improvement
- Invoice Extraction
- License Plate Recognition
- Liveness Detection
- Liveness Streaming
- MultiAddress Parsing
- MultiPage Content Extraction
- Payment Card Extraction
- Vio Extraction
Liveness Streaming [application/json]
POST
https://mostqiapi.com/liveness/streaming/async
Last modified:2025-03-25 15:30:53
Você pode configurar os seguintes elementos para oferecer uma experiência totalmente personalizada aos seus usuários:
Request
Header Params
Authorization
string
optional
Example:
Bearer {{bearer_token}}
Body Params application/json
webhook
object
optional
url
string
optional
fallbackUrl
string
optional
authorization
object
optional
uiCustomization
object
optional
defaultLanguage
string
optional
Example:
pt-BR
theme
string
optional
Example:
dark
primaryColor
string
optional
Example:
#1B406A
welcomeMessage
object
optional
successMessage
object
optional
failureMessage
object
optional
Examples
{
"webhook": {
"url": "string",
"fallbackUrl": "string",
"authorization": {
"headers": [
{
"name": "string",
"value": "string"
}
],
"queryStrings": [
{
"name": "string",
"value": "string"
}
]
}
},
"uiCustomization": {
"defaultLanguage": "string",
"theme": "string",
"primaryColor": "string",
"welcomeMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
},
"successMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
},
"failureMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
}
}
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://mostqiapi.com/liveness/streaming/async' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"webhook": {
"url": "string",
"fallbackUrl": "string",
"authorization": {
"headers": [
{
"name": "string",
"value": "string"
}
],
"queryStrings": [
{
"name": "string",
"value": "string"
}
]
}
},
"uiCustomization": {
"defaultLanguage": "string",
"theme": "string",
"primaryColor": "string",
"welcomeMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
},
"successMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
},
"failureMessage": {
"ptBR": "string",
"en": "string",
"es": "string",
"fr": "string"
}
}
}'
Responses
🟢200Success
application/json
Body
result
object
required
processId
string
required
sessionUrl
string
required
urlExpiresAt
string
required
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
message
string
required
code
string
required
errors
object | null
required
Example
{
"result": {
"processId": "eb2bf100-0376-46f9-8147-1b7ed36a39f0",
"sessionUrl": "https://liveness.mostqi.com/?session=ImV5SmhiR2NpT2lKQk1USTRTMWNpTENKbGJtTWl...",
"urlExpiresAt": "2025-03-11T19:36:41Z"
},
"requestId": "IRHJGf2pmp2HKbD44Uus5",
"elapsedMilliseconds": 3488,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2025-03-25 15:30:53