Developer docs

Build against the ProjeX Submission API — discover live cohorts, list milestones and tasks, and submit programmatically with an API key or the TypeScript SDK.

Quick start

  1. Create a key under Account → API keys with the scopes you need.
  2. Set PROJEX_API_URL and PROJEX_API_KEY.
  3. Call REST via Swagger or install @pkg-projex/sdk.
# Local ProjeX app/API origin
export PROJEX_API_URL="http://localhost:3000"
export PROJEX_API_KEY="pjx_live_…"

curl -H "Authorization: Bearer $PROJEX_API_KEY" \
  "$PROJEX_API_URL/api/v1/cohorts?status=live"