- 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
Image Properties [application/json]
POST
https://mostqiapi.com/process-image/image-properties
Last modified:2024-11-08 11:34:16
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
fileBase64
string
optional
fileUrl
string
optional
filePassword
string <base64>
optional
A senha deve ser codificada em uma string base64 (RFC 4648), pois PDFs permitem que as senhas sejam dados binários.
Example
{
"fileBase64": "",
"fileUrl": "",
"filePassword": ""
}
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 --location --request POST 'https://mostqiapi.com/process-image/image-properties' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileBase64":"",
"fileUrl":"",
"filePassword":""
}'
Responses
🟢200OK
application/json
Body
result
array [object {1}]
required
extractions
array [object {2}]
optional
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
message
string | null
required
code
string
required
errors
array [object {2}] | null
required
Example
{
"result": [
{
"extractions": [
{
"source": "compute-grayscale",
"sections": [
{
"pages": [
{
"number": 1,
"score": 0.34
},
{
"number": 2,
"score": 0.41
}
]
}
]
}
]
}
],
"requestId": "gzP3Ix8PB0iWf8EZvbW1j",
"elapsedMilliseconds": 2034,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2024-11-08 11:34:16