Quickstart
Get Started in Minutes
Follow these steps to integrate StrategyForge AI into your application.
1
Get your API key
Sign up for a developer account and generate your API key from the dashboard.
2
Install the SDK
Install our official SDK for your preferred language.
3
Make your first call
Create an engagement and start collecting strategic insights.
4
Build your integration
Use webhooks and the full API to integrate StrategyForge into your workflow.
Choose your language
Installation
terminalbash
pip install strategyforgeQuickstart Example
quickstart.pypython
from strategyforge import StrategyForgeClient
client = StrategyForgeClient(api_key="YOUR_API_KEY")
# Create an engagement
engagement = client.engagements.create(
client_id="client_abc123",
organization_name="Acme Corp",
package_id="enterprise_v2"
)
print(f"Created engagement: {engagement.id}")
# Start a CEO interview session
session = client.sessions.create(
engagement_id=engagement.id,
persona="CEO",
tier="TIER_1",
session_type="INTERVIEW",
user_track="VISION"
)
print(f"Session started: {session.id}")
# Submit a response
response = client.responses.submit(
engagement_id=engagement.id,
session_id=session.id,
question_id="q_001",
content="Our primary goal is to automate 60% of manual QA.",
answered_by="CEO"
)
print(f"Response recorded: {response.id}")Authentication
All API requests require authentication via a Bearer token. Include your API key in theAuthorization header:Bearer YOUR_API_KEY. Keys can be generated and managed in your developer dashboard.