Factory402 API Endpoints

Real-time intelligence for the built world. Pay per request with API credits — no subscriptions, no commitments.

How It Works

1. Get an API key — Create one below or via POST /api/keys
2. Buy credit packs — Load your key with credits via Stripe checkout
3. Make requests — Pass your key as Authorization: Bearer f402_live_...

Every paid request deducts credits from your balance. Free demo endpoint requires no key. Legacy x402 payment headers also accepted.


Credit Packs

Buy once, use anytime. Credits never expire.

Starter
50 credits
$50
Try a few endpoints. Enough for 5 company profiles or 8 risk scores.
$1.00 per credit
Scale
300 credits (250 + 50 bonus)
$250
For teams running multiple analyses. 20% bonus credits.
$0.83 per credit
Enterprise
600 credits (500 + 100 bonus)
$500
High-volume intelligence. Dedicated support and SLA available.
$0.83 per credit

Endpoint Pricing

Prices shown in credits. Each credit ≈ $0.83–$1.00 depending on your pack.

IDMethodPathDescriptionCredits
osint.demo.v1GET/api/osint/demoFree demo endpoint — returns sample intelligence data to preview output format.Free
osint.market_signals.v1GET/api/osint/market-signalsEmerging trends, anomalies, and sentiment shifts.6
osint.risk_score.v1GET/api/osint/risk-scoreNumeric risk score with full explanation and confidence interval.8
osint.company_profile.v1GET/api/osint/company-profileStructured company profile including ownership, leadership, sector, and risk flags.10
osint.competitor_dossier.v1GET/api/osint/competitor-dossierCompetitor landscape, positioning, and strategy signals.12
osint.supply_chain_map.v1GET/api/osint/supply-chain-mapUpstream/downstream supply chain entities with geography and risk markers.15
product.dossier_download.v1GET/api/products/dossier/:idDownload full intelligence dossier by ID.20
workflow.risk_analysis.v1POST/api/workflows/risk-analysisStructured risk assessment workflow with scenario modeling.35
workflow.corporate_intel.v1POST/api/workflows/corporate-intelMulti-agent corporate intelligence workflow.40
workflow.market_mapping.v1POST/api/workflows/market-mappingMarket map, key players, and competitive dynamics.45
workflow.operational_forecast.v1POST/api/workflows/operational-forecastOperational forecast with scenario analysis.50

Quick Start

1. Create an API key

curl -X POST https://api.factory402.com/api/keys \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]","name":"Your Name"}'

2. Check your balance

curl https://api.factory402.com/api/credits \
  -H "Authorization: Bearer f402_live_YOUR_KEY"

3. Hit a paid endpoint

curl "https://api.factory402.com/api/osint/risk-score?query=Acme+Corp" \
  -H "Authorization: Bearer f402_live_YOUR_KEY"

4. View usage

curl https://api.factory402.com/api/usage \
  -H "Authorization: Bearer f402_live_YOUR_KEY"