OpenSOP API Reference v0.1

List all processes

GET /sop/

Returns every published process definition in the workspace. Use this for discovery — agents call this endpoint to learn what processes are available before starting an instance.

AUTH
Requires X-SOP-Token header. See Authentication.

Response

200 application/json — Returns an array of process definition objects.

Errors

401 unauthorized Token missing or revoked.
curl https://api.opensop.dev/sop/ \
  -H "X-SOP-Token: $OPENSOP_TOKEN"
RESPONSE 200
[
  {
    "name":        "customer-onboarding",
    "version":     "1.0",
    "description": "Onboard a new business customer",
    "owner":       "banking-team"
  }
]