curl --request GET \
--url https://api.example.com/graph/neighbors/{path}{
"401": {},
"404": {},
"neighbors": [
{
"path": "<string>",
"name": "<string>",
"edge_type": "<string>",
"weight": 123,
"theme": "<string>"
}
]
}Retrieve all connected nodes (neighbors) for a specific node in the knowledge graph
curl --request GET \
--url https://api.example.com/graph/neighbors/{path}{
"401": {},
"404": {},
"neighbors": [
{
"path": "<string>",
"name": "<string>",
"edge_type": "<string>",
"weight": 123,
"theme": "<string>"
}
]
}Documentation Index
Fetch the complete documentation index at: https://mintlify.com/timepoint-ai/timepoint-clockchain/llms.txt
Use this file to discover all available pages before exploring further.
GET /graph/neighbors/{path}
X-Service-Key header.
events/1945/world-war-ii-endsShow neighbor object
causes - Causal relationshipcontemporaneous - Events occurring in similar timeframe (within 1 year)same_location - Events in the same locationthematic - Events sharing common themes/tags1.0 - causes (manual)0.5 - contemporaneous, same_location0.3 - thematicthematic edges, contains comma-separated list of shared tags. Empty for other edge types.Show causes
Show contemporaneous
Show same_location
Show thematic
theme field contains the specific overlapping tags.curl -X GET "https://api.timepointclockchain.com/graph/neighbors/events/1945/world-war-ii-ends" \
-H "X-Service-Key: your_service_key"
[
{
"path": "/events/1945/atomic-bomb-hiroshima",
"name": "Atomic Bombing of Hiroshima",
"edge_type": "causes",
"weight": 1.0,
"theme": ""
},
{
"path": "/events/1945/yalta-conference",
"name": "Yalta Conference",
"edge_type": "contemporaneous",
"weight": 0.5,
"theme": ""
},
{
"path": "/events/1946/nuremberg-trials",
"name": "Nuremberg Trials Begin",
"edge_type": "contemporaneous",
"weight": 0.5,
"theme": ""
},
{
"path": "/events/1939/world-war-ii-begins",
"name": "World War II Begins",
"edge_type": "thematic",
"weight": 0.3,
"theme": "war, military, global-conflict"
}
]
{
"detail": "Node not found"
}
{
"detail": "Unauthorized"
}
causes edges must be explicitly created and represent curated relationships