Skip to main content
method
POST
/export
Authentication: Required (if enabled) Export the entire graph as base64-encoded canonical binary data with a checksum for verification.
Export works for both in-memory and persistent (redb) backends. For persistent backends, a snapshot is built by iterating all nodes and edges.

Response

{
  "success": true,
  "data": "S1JFWA...",
  "checksum": 12345678,
  "error": null
}
FieldTypeDescription
successbooleanWhether export succeeded.
datastring or nullBase64-encoded graph data.
checksuminteger (u64) or nullDeterministic checksum for verification.
errorstring or nullError message (if failed).

Example

curl -X POST http://localhost:8080/export \
     -H "Authorization: Bearer your-api-key"
Last modified on February 19, 2026