API Docs · eKYC Core
Image/File
Image and file storage endpoints that back nearly every other eKYC Core API call. Most other endpoints reference an image_id or file_id returned by these uploads.
Upload imagePOST/v1/imagesUploads an image, as a file or as base64, and returns the image_id that every other eKYC Core API takes as its image reference.Download imageGET/v1/images/{image_id}Retrieves an original uploaded image by its image_id, as raw binary or as base64.Upload video/audio/framesPOST/v1/filesUploads a video or audio file, or a list of video frames, and returns the file_id for it.Download fileGET/v1/files/{file_id}Retrieves an original uploaded file — video, audio or PDF — by its file_id, as raw binary or as base64.Convert PDF to imagesPOST/v1/convert_pdf_syncConverts the requested pages of an uploaded PDF into images and returns one image id per page.Delete filesPOST/v1/delete_filesDeletes up to 100 uploaded files from storage by their file IDs, so a client can remove what it just uploaded.