Securely authenticate public API requests to Fortifiers with a scoped API key.
The Fortifiers public API uses API keys. Send the key in the X-API-Key header.
Requests must be made over HTTPS. Plain HTTP requests will be rejected to ensure the security of your API credentials.
API keys are scoped to specific permissions. Ensure your key has the necessary scopes for the endpoints you are accessing.
Include your API key in the X-API-Key header of all requests.
curl -X POST https://api.fortifiers.app/api/v1/sourcing/price \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"commercial flooring"}'Log in to your Fortifiers dashboard
Navigate to Settings → API
Click "Generate New API Key"
Copy and securely store your API key immediately.
Important Security Warning
Your API key will only be displayed once. Store it securely and never commit it to version control (e.g., git).
| Status Code | Error | Description |
|---|---|---|
| 401 | Unauthorized | Missing or invalid API key |
| 403 | Forbidden | API key doesn't have required permissions |
| 429 | Rate Limit Exceeded | Too many requests, try again later |
Response Headers
X-RateLimit-LimitTotal requests allowedX-RateLimit-RemainingRequests remainingX-RateLimit-ResetReset timestamp