Welcome to the Developer Portal
Getting Started
- Create a Sandbox API Key to test your integration
- Use the sandbox to safely experiment without affecting real data
- Check the API Documentation for endpoint details
- When ready, create a Production API Key for live use
API Keys
No API Keys Yet
Create your first API key to get started
Sandbox Environment
No Sandbox Available
Create a sandbox API key to get a sandbox environment
Quick Start Guide
Make Your First Request
Use your API key to authenticate requests:
curl -X GET "/api/v1/projects" \
-H "X-API-Key: YOUR_API_KEY"
JavaScript Example
const response = await fetch('/api/v1/projects', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const { data, pagination } = await response.json();
Webhooks
About Webhooks
Webhooks allow you to receive real-time notifications when events occur in BuildManager Pro. Configure endpoints to receive POST requests with event data when projects, RFIs, submittals, and more are created or updated.
No Webhooks Configured
Select an API key and create your first webhook to receive event notifications