Developer platform · API v1

Build with the FastESM 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

Services

Published enterprise service catalogue entries.

GET /api/v1/servicesGET /api/v1/services/{id}

Requests

Enterprise service requests and their workflow state.

GET /api/v1/requestsGET /api/v1/requests/{id}

Knowledge articles

Service knowledge articles.

GET /api/v1/knowledgeGET /api/v1/knowledge/{id}

Departments

Departments that own and fulfil services.

GET /api/v1/departmentsGET /api/v1/departments/{id}

Quick start

curl "https://esm.fastsme.com/api/v1/services?limit=20"

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

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