Scan Prompt

Service for extracting data from documents through training of AI models.

Scan Studio

POST - https://api.verifik.co/v2/ocr/scan-prompt

The OCR Document Scanning with AI Integration service enables seamless document scanning, extraction, and verification using advanced optical character recognition (OCR) technology integrated with AI models. This service empowers you to send images of documents and receive extracted data, offering enhanced accuracy and efficiency in document processing.

Note: This service uses models already created and trained by Verifik, so its response times and the accuracy in which the information is extracted are superior.

Examples of ID's:

Response "Status"

We have some Status for each response, each status depends on what do you do with the document using Verifik services, We have the following:

  • ACTIVE_BUT_UNVERIFIED: This status refers to a valid document that haven't made any validations with government pages.

  • ACTIVE: A Valid document that was correctly certify making search in government pages.

  • NEEDS_MANUAL_VERIFICATION: This status refers when during onboarding process for some reason the government page don't work.

  • NOT_FOUND: The document was not found in the government page, so it couldn't be validated.

  • EXPIRED: The document Expire.

Keep in mind that ACTIVE_BUT_UNVERIFIED cames by default, if you want to validate the documents that you Scan in the OCR service you can use the endpoints that we create for that purpose:

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeDescription

image

string

Image in Base64 encoded format or a URL where the image is hosted.

Response

{
  "id": "xjicp",
  "data": {
    "__v": 0,
    "_id": "64d3ed6aed1c7d7ea391e617",
    "url": "https://cdn.verifik.co/ocr/64404b1f9856cc8cebd762e7/1691610471704-image.jpeg",
    "type": "ocr",
    "client": "64404b1f9856cc8cebd762e7",
    "status": "ACTIVE_BUT_UNVERIFIED",
    "deleted": false,
    "createdAt": "2023-08-09T19:47:54.214Z",
    "updatedAt": "2023-08-09T19:47:54.214Z",
    "requires2FA": false,
    "documentType": "CUSTOM",
    "OCRExtraction": {
      "fullName": "Juan Miguel Rodríguez López",
      "lastName": "Rodríguez López",
      "firstName": "Juan Miguel",
      "documentNumber": "01101101 01100001"
    },
    "documentNumber": "01101101 01100001",
    "imageValidated": false,
    "validationMethod": "SCAN_GPT"
  },
  "signature": {
    "message": "Certified by Verifik.co",
    "dateTime": "August 9, 2023 7:47 PM"
  }
}

Last updated