memμrondocs
Console
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

filefilerequired

scopestringoptional

custom_idstringoptional

source_urlstringoptional

Multipart upload. Supports PDF, markdown, images, and other parsed document types.
POST/memuron/documents/ingest
curl -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
}