Getting StartedAvailable
Introduction
Understand the Fortifiers API surface, its base URL, and which workflows are ready for external integrations.
1
What you can build
Fortifiers exposes a versioned REST API for turning unstructured work requests into priced quote drafts and for looking up market pricing.
- Generate a structured draft quote from plain-language requirements.
- Retrieve current sourcing options for a product or material.
- Use test-mode keys to validate an integration without creating live operational data.
- Configure outbound webhooks from the authenticated developer portal.
2
Base URL
All externally supported v1 endpoints begin with the following production base URL.
text
https://api.fortifiers.app/api/v13
Request format
Send JSON bodies with UTF-8 encoding and authenticate protected endpoints with the X-API-Key header.
bash
curl https://api.fortifiers.app/api/v1/sourcing/price \
+ -H "X-API-Key: YOUR_API_KEY" \
+ -H "Content-Type: application/json" \
+ -d '{"query":"3/4 inch plywood","location":"Halifax"}'4
API availability
The documentation distinguishes public API endpoints from dashboard-only workflows. Customers and email processing currently remain authenticated product workflows rather than public v1 resources.
Do not integrate against undocumented internal endpoints; they may change without versioning.