- 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
Payment Card Extraction [application/json]
POST
https://mostqiapi.com/process-image/payment-card-extraction
Payment Card Extractioncartao
Last modified:2024-11-08 11:37:16
Request
Header Params
Authorization
string
required
Example:
Bearer {{bearer_token}}
Body Params application/json
fileBase64
string <base64>
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": "string",
"fileUrl": "string",
"filePassword": "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 --location --request POST 'https://mostqiapi.com/process-image/payment-card-extraction' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/json' \
--data-raw '{
"fileBase64": "string",
"fileUrl": "string",
"filePassword": "string"
}'
Responses
🟢200Ok
application/json
Body
result
array [object {3}]
optional
type
string
required
stdType
string
required
extractions
array [object {4}]
optional
requestId
string
required
elapsedMilliseconds
integer
required
status
object
required
message
string | null
optional
code
string
required
errors
object | null
required
Example
{
"result": [
{
"type": "payment-card",
"stdType": "payment-card",
"extractions": [
{
"source": "iocr",
"score": 0.9,
"tags": [
"id=zzz-payment-card-1",
"std-type=payment-card",
"type=payment-card"
],
"sections": [
{
"name": "payment_card",
"stdName": "payment_card",
"score": 0.9,
"fields": [
{
"name": "number",
"stdName": "number",
"value": "2221222134120012",
"score": 0.9
},
{
"name": "network",
"stdName": "network",
"value": "mastercard",
"score": 0.9
},
{
"name": "expiry_month",
"stdName": "expiry_month",
"value": "1998-06",
"score": 0.84
}
],
"tables": []
}
]
}
]
}
],
"requestId": "iW5V7X96Vb2FzWvf385Nk",
"elapsedMilliseconds": 7070,
"status": {
"message": "Ok",
"code": "200",
"errors": null
}
}
🟠400R101 A specified parameter is wrong
🟠401R117 Invalid authorization data
🔴500E100 The request could not be processed
Modified at 2024-11-08 11:37:16