Get processing documents
documents.list_processing() -> DocumentListProcessingResponse
GET/v3/documents/processing
Get processing documents
import os
from supermemory import Supermemory
client = Supermemory(
api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted
)
response = client.documents.list_processing()
print(response.documents){
"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
}