List Documents
curl --request GET \
--url https://api.capout.ai/documents \
--header 'capout-api-key: <api-key>'const options = {method: 'GET', headers: {'capout-api-key': '<api-key>'}};
fetch('https://api.capout.ai/documents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.capout.ai/documents"
headers = {"capout-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"documents": [
{
"status": "<string>",
"document_id": "<string>",
"file_name": "<string>",
"progress": {
"ocr": "<string>",
"structure": "<string>",
"actions": "<string>",
"trades": "<string>",
"categories": "<string>"
},
"workflow_complete": false,
"billing": {},
"export": {},
"created_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"exported_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}List Documents
List all API-submitted documents for the authenticated organization.
GET
/
documents
List Documents
curl --request GET \
--url https://api.capout.ai/documents \
--header 'capout-api-key: <api-key>'const options = {method: 'GET', headers: {'capout-api-key': '<api-key>'}};
fetch('https://api.capout.ai/documents', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.capout.ai/documents"
headers = {"capout-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"documents": [
{
"status": "<string>",
"document_id": "<string>",
"file_name": "<string>",
"progress": {
"ocr": "<string>",
"structure": "<string>",
"actions": "<string>",
"trades": "<string>",
"categories": "<string>"
},
"workflow_complete": false,
"billing": {},
"export": {},
"created_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"exported_at": "2023-11-07T05:31:56Z"
}
],
"total": 123
}