API v1.0 · stable

API Reference

Programmatic access to every part of the StructureBiz command center. RESTful, JSON over HTTPS, bearer token authentication.

Base URL
https://api.structurebiz.app
Auth header
Authorization: Bearer sk_…
Rate limit
300 req / min / token

Authentication

POST
/v1/auth/login

Exchange credentials for an access token.

{ "email": "owner@acme.co", "password": "•••••" }
POST
/v1/auth/refresh

Refresh an expired access token.

POST
/v1/auth/logout

Revoke the current session.

Example response
{
  "ok": true,
  "data": {
    "id": "c_01HX9F...",
    "name": "Acme Holdings LLC",
    "entityType": "Holding LLC",
    "state": "Wyoming",
    "einStatus": "Obtained"
  }
}