Skip to main content
The Launchboard API is a headless REST API (OpenAPI 3.1) that exposes every operation available in the Launchboard product. Every read and every mutation you can perform in the UI — creating stakeholders, issuing securities, recording transactions, exporting an OCF snapshot — is also available here. If you’re building an integration, automating equity workflows, or syncing Launchboard data into a downstream system, this API is your entry point.

Base URL

All v1 endpoints are served from:

OpenAPI spec

The machine-readable OpenAPI 3.1 document is available at:
Import it into any OpenAPI-compatible tool — Postman, Insomnia, or an SDK generator — to get a typed client with no additional setup.

Authentication

All requests must include an API key as a bearer token in the Authorization header:
Create your API key in Settings → API Keys. See the authentication guide for full details, including error codes and security considerations.

Request and response format

The API accepts and returns JSON. Set Content-Type: application/json on all requests with a body. Error responses follow RFC 9457 Problem Details and use Content-Type: application/problem+json.

Resources

Quick start

Fetch your organization’s stakeholders with a single curl call:
List endpoints return paginated results. Pass the nextCursor value as a cursor query parameter to fetch the next page. See the pagination guide for details.