Skip to content

ID Card OCR Scan

POST
/api/v1/kyc/id-card/scan
curl --request POST \
--url https://api.parasta.io/api/v1/kyc/id-card/scan \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: multipart/form-data' \
--form id_type=example \
--form image=@file

Upload ID card image for OCR scanning and verification.

Media type multipart/form-data
object
id_type
required

RESIDENT_CARD | DRIVER_LICENSE | PASSPORT

string
image
required

ID card image file

string format: binary

OK

Media type application/json
Example
{
"status": "ok",
"data": {
"name": "John Doe",
"ssn": "910101-*******",
"issue_date": "2026.05.16",
"match": true
}
}