Playground
Write to your node through the same public API any app would use. Each form shows its exact curl equivalent.
stored in localStorage only · mint one with
make keysCreate atom
POST /api/atomsAny URL, string, or JSON. The atom ID is derived from the bytes — posting the same input twice returns the same atom. Workers parse, classify, and enrich it automatically.
curl equivalent
curl \
-X POST \
"https://api-production-b2d7.up.railway.app/api/atoms" \
-H 'Content-Type: application/json' \
-d '{"input":"…"}'Create triple
POST /api/triplesClaim a subject → predicate → object relationship between existing terms. Paste atom IDs from the atoms table; the predicate can come from the registry.
curl equivalent
curl \
-X POST \
"https://api-production-b2d7.up.railway.app/api/triples" \
-H 'Content-Type: application/json' \
-d '{"subject_id":"0x…","predicate_id":"0x…","object_id":"0x…"}'