Skip to main content
GET
/
v3
/
documents
/
processing
Get processing documents
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};  fetch('https://api.supermemory.ai/v3/documents/processing', options)  .then(res => res.json())  .then(res => console.log(res))  .catch(err => console.error(err));
{  "documents": [  {  "id": "doc_123",  "customId": "custom_123",  "title": "My Document",  "type": "text",  "status": "extracting",  "createdAt": "2024-12-27T12:00:00Z",  "updatedAt": "2024-12-27T12:01:00Z",  "metadata": {},  "containerTags": [  "sm_project_default"  ]  }  ],  "totalCount": 5 }

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Successfully retrieved processing documents

List of documents currently being processed

documents
object[]
required
totalCount
number
required

Total number of processing documents

Example:

5