API REFERENCE
Ingest a document
Upload a file and ingest it into the document graph with chunking and optional semantic linking.
Requires authentication — a Bearer token or
X-Memuron-Actor-Id header.Form fields
filefilerequiredscopestringoptionalcustom_idstringoptionalsource_urlstringoptionalMultipart upload. Supports PDF, markdown, images, and other parsed document types.
POST
/memuron/documents/ingestcurl -X POST https://api.memuron.com/memuron/documents/ingest \
-F "file=@/path/to/document.pdf"200 OK
{
"status": "success",
"document_key": "…",
"chunk_count": 4,
"semantic_links_created": 3
}