Developer platform · API v1

Build with the FastPPM API.

Read the live demo database through a typed, versioned API. Selected integration writes are implemented behind bearer-token authentication.

Public preview access. GET endpoints require no authentication. Writes return 503 until FASTSME_API_TOKEN is configured; enabled clients send Authorization: Bearer <token>.

Resources

Projects

Portfolio initiatives, programmes, and workstreams.

GET /api/v1/projectsGET /api/v1/projects/{id}

Milestones

Initiative milestones, progress, and dependencies.

GET /api/v1/milestonesGET /api/v1/milestones/{id}

Risks

Portfolio risks, mitigations, probability, and impact.

GET /api/v1/risksGET /api/v1/risks/{id}

Documents

Portfolio source documents and extraction state.

GET /api/v1/documentsGET /api/v1/documents/{id}

Quick start

curl "https://ppm.fastsme.com/api/v1/projects?limit=20"

python - <<'PY'
import requests
rows = requests.get("https://ppm.fastsme.com/api/v1/projects", timeout=20).json()
print(rows["data"])
PY

Runtime OpenAPI: /api/openapi.json · Stable compatibility schema: /swagger.json · Interactive docs: /api/docs