๐ฅList, Fetch, and Download Documents
1. List Documents
curl -X GET "https://api.autocontentapi.com/documents/get?page=1&pageSize=20" \
-H "Authorization: Bearer YOUR_API_TOKEN"{
"items": [
{
"id": "550e8400-e29b-41d4-a716-446655440000",
"type": "briefing_doc",
"format": "pdf",
"title": "Briefing Document: AI Procurement in Healthcare",
"createdOn": "2026-03-11T19:12:00Z",
"status": 100
}
],
"totalCount": 1,
"page": 1,
"pageSize": 20,
"totalPages": 1
}2. Fetch One Document
3. Download the Stored Result
4. Poll with /content/Status/{id} While Waiting
/content/Status/{id} While WaitingTry it in code
Last updated