Get processing documents
GET/v3/documents/processing
Get documents that are currently being processed
Get processing documents
curl https://api.supermemory.ai/v3/documents/processing \
-H "Authorization: Bearer $SUPERMEMORY_API_KEY"{
"documents": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxx",
"createdAt": "2024-12-27T12:00:00Z",
"customId": "doc-api-rate-limits",
"metadata": {
"source": "bar",
"language": "bar"
},
"status": "extracting",
"title": "My Document",
"type": "text",
"updatedAt": "2024-12-27T12:01:00Z",
"containerTags": [
"string"
]
}
],
"totalCount": 5
}Returns Examples
{
"documents": [
{
"id": "xxxxxxxxxxxxxxxxxxxxxx",
"createdAt": "2024-12-27T12:00:00Z",
"customId": "doc-api-rate-limits",
"metadata": {
"source": "bar",
"language": "bar"
},
"status": "extracting",
"title": "My Document",
"type": "text",
"updatedAt": "2024-12-27T12:01:00Z",
"containerTags": [
"string"
]
}
],
"totalCount": 5
}