import Morphik from 'morphik';const client = new Morphik({ apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted});const response = await client.documents.getStatus('document_id');console.log(response);
{}
Documents
Get Document Status
Get the processing status of a document.
GET
/
documents
/
{document_id}
/
status
JavaScript
import Morphik from 'morphik';const client = new Morphik({ apiKey: process.env['MORPHIK_API_KEY'], // This is the default and can be omitted});const response = await client.documents.getStatus('document_id');console.log(response);