Enter your email and password to access your API keys and usage.
New subscriber? Create your password →
| Endpoint | Calls |
|---|
⚡ Your new API key — copy it now. It will not be shown again.
| Endpoint | Calls |
|---|
Manage payment method, download invoices, or change your plan in the Stripe billing portal.
All 50+ endpoints with parameters, examples, and response schemas.
Your first API call in under 5 minutes.
Ask questions and get help from other Blackfyre API users.
Pass your API key as a Bearer token on every request:
$ curl -H "Authorization: Bearer bk_live_YOUR_KEY" \
https://api.blackfyre.ai/v1/opportunities?wired_min=7
Python:
import requests
headers = {"Authorization": "Bearer bk_live_YOUR_KEY"}
r = requests.get("https://api.blackfyre.ai/v1/intelligence/fy-surge", headers=headers)
print(r.json())
Node.js:
const r = await fetch('https://api.blackfyre.ai/v1/opportunities/OPP_ID/pwin?vendor_cage=CAGE', {
headers: { 'Authorization': `Bearer bk_live_YOUR_KEY` }
});
const data = await r.json();