Quickstarts
API Reference
Unize Storage
API Reference
Export Graph Data
Export a knowledge graph in Cypher or JSON.
POST
/
v1
/
storage
/
export
curl --request POST \
--url https://api.unize.org/v1/storage/export/ \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cypher_query": false
}'
{
"graph": {
"nodes": [
{
"node_label": "<string>",
"node_name": "<string>",
"node_var": "<string>",
"node_properties": "<any>",
"snippet": "<string>"
}
],
"relationships": [
{
"rel_type": "<string>",
"start_node": "<string>",
"end_node": "<string>",
"rel_properties": "<any>"
}
],
"cypher": "<string>"
},
"latest_graph_merge_data": {
"goal": "<string>",
"status": "queued",
"timestamp": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}
Body
application/json
Graph data request
The body is of type object
.
Response
200
application/json
Graph data retrieved successfully
The response is of type object
.
curl --request POST \
--url https://api.unize.org/v1/storage/export/ \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>",
"execution_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"cypher_query": false
}'
{
"graph": {
"nodes": [
{
"node_label": "<string>",
"node_name": "<string>",
"node_var": "<string>",
"node_properties": "<any>",
"snippet": "<string>"
}
],
"relationships": [
{
"rel_type": "<string>",
"start_node": "<string>",
"end_node": "<string>",
"rel_properties": "<any>"
}
],
"cypher": "<string>"
},
"latest_graph_merge_data": {
"goal": "<string>",
"status": "queued",
"timestamp": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}