# `api.documents.get` > `GET /documents/get/{docPath}` — ACPortal **Python** ```python api.documents.get(doc_path: str) -> bytes ``` **CLI** ```bash ab documents get ``` ``GET /documents/get/{docPath}`` — download a document as raw bytes. Args: doc_path: The document's storage path, as returned in ``Document.path`` by :meth:`list` (may contain ``/`` separators). Response model: bytes ## Response Returns `bytes`. --- [← Back to api.documents](../documents.md)