The Launchboard API authenticates requests using API keys passed as bearer tokens. Every request to aDocumentation Index
Fetch the complete documentation index at: https://docs.launchboard.xyz/llms.txt
Use this file to discover all available pages before exploring further.
/api/v1/* endpoint must include your API key in the Authorization header. Requests without a valid key are rejected with a 401 Unauthorized response.
Create an API key
Open Settings → API Keys in the Launchboard dashboard and click Create API Key. Give the key a descriptive name — for example, the name of the integration or service that will use it — and choose the minimum role that integration requires.Key format
API keys issued in production use the prefixpg_live_. Keys issued in non-production environments use pg_test_. You can tell at a glance which environment a key belongs to.
Make an authenticated request
Include your API key in theAuthorization header of every request:
Error responses
The
Authorization header is missing, malformed, or the key is invalid or revoked. Check that you’ve included the header and that the key value is correct.The key is valid but the role assigned to it does not have permission to perform the requested operation. Use a key with a higher role, or request the minimum necessary permissions for your use case.
Security
Rate limiting
API requests are rate limited. When your integration exceeds the limit, the API returns429 Too Many Requests with a Retry-After header indicating how many seconds to wait before retrying. Build exponential backoff into any integration that makes bulk or high-frequency requests.