v1.0 · stable

BraidSuite API

A clean REST surface over the same engine that powers every BraidSuite workspace. JSON in, JSON out.

Base URL

https://api.braidsuite.app

Auth

Bearer <session_token>

Rate limit

120 req / min / token

POST/v1/auth/session

Create an authenticated session.

{
  "user": { "id": "u_8x21", "role": "braider" },
  "token": "sess_…",
  "expiresAt": "2026-05-12T18:30:00Z"
}
GET/v1/auth/me

Return the current authenticated user.

{ "id": "u_8x21", "name": "Jasmine Wilson", "role": "braider" }