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.
API reference
Interactive Swagger UI for /api/v1. Authorize with your key and try every endpoint live.
TypeScript SDK
Install @pkg-projex/sdk. Full method reference, options, accepted payloads, and scopes.
API keys
Generate a pjx_live_… key in your account. One active key per user; revoke anytime.
Quick start
- Create a key under Account → API keys with the scopes you need.
- Set
PROJEX_API_URLandPROJEX_API_KEY. - 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"