Skip to Content
These docs are actively being updated. Check back regularly for new guides and API references.
API ReferenceOverview

API Reference

Waypath’s REST + WebSocket API is the core product. The dashboard is one consumer; you can build your own integrations using these endpoints.

Base URL

https://api.waypath.app

For local development: http://localhost:4747

Authentication

All endpoints (except health check) require authentication via one of:

  • JWT token: Authorization: Bearer <token> (for dashboard users)
  • API key: X-API-Key: dsk_... (for external consumers)

See Authentication for details.

Endpoints

SectionEndpoints
AuthenticationRegister, login, session, API key management
Event IngestionTrack events, identify customers, batch ingestion
CustomersList, get, timeline
GraphFull graph dump, Cypher queries
WebhooksInbound platform webhooks
WebSocketReal-time graph mutation stream

Response format

All endpoints return JSON. Successful responses use standard HTTP status codes (200, 201). Errors return { error: string } with appropriate 4xx/5xx codes.