Document Retrieval¶
Download proof documents associated with entities. Documents are official registry extracts and filings captured during searches.
Get document¶
Request¶
Headers
| Header | Value |
|---|---|
X-API-Key or Authorization |
API key or Bearer token |
Path parameters
| Parameter | Type | Description |
|---|---|---|
documentId |
string | Document ID (_documentID on the entity) |
Response¶
Returns the PDF file with:
The response body is the full document.
Example¶
curl -sS "https://api.revolutio.systems/document/abc123-doc-id" \
-H "X-API-Key: $REV_API_KEY" \
-o document.pdf
Finding document IDs¶
Document IDs appear on Entity objects under sourceDocuments:
{
"sourceDocuments": [
{
"_documentID": "abc123-doc-id",
"_entityID": "entity-uuid",
"dateRetrieved": "2026-01-15",
"name": "Certificate of Incorporation",
"source": "Companies House"
}
]
}
Use _documentID as the path parameter. Prefer reading documents from case.target (and nested counterparties) after a completed search, or from GET /search/{id}/status → result.sourceDocuments.