API Documentation
Interactive API reference for project-forge
Quick Start
1. Get an API Token
Sign up at /login, configure your GitHub PAT, and create an API token in your dashboard.
2. Make a Request
curl -X POST https://project-forge.opentriologue.ai/api/v1/projects \
-H "Content-Type: application/json" \
-H "X-API-Key: pf_your_token_here" \
-d '{
"projectName": "my-app",
"summary": "A web application",
"features": ["auth", "crud"],
"constraints": ["TypeScript"]
}'3. Clone & Develop
The API returns a GitHub repository URL. Clone it and start developing:
git clone https://github.com/username/my-app.git
⚠️ Rate Limits
Each API token is limited to 10 projects per day. This limit resets every 24 hours from your first request.