Quickstart
This guide walks you through the fastest way to get started with SynapTask.
Prerequisites
- Node.js & npm
- Access to SynapTask API (account & API key)
Steps
- Register/Login at the web app.
- Subscribe on Plus or higher plan (API access is available starting from Plus plan).
- Obtain credentials (API token).
- Connect via WebSocket:
import io from 'socket.io-client';
const socket = io('https://synaptask.space', { withCredentials: true });
socket.on('connected', console.log); - Fetch your graph: either through REST
GET /api/graphor socketgraph:get.
That's it — you can now explore nodes, links, and start building in 3D. Next, learn how to create your first node