Use the Thinkific CLI from KosmoKrator to call Thinkific tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.
Thinkific can be configured headlessly with `kosmokrator integrations:configure thinkific`.
# Install KosmoKrator first if it is not available on PATH.curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash# Configure and verify this integration.kosmokrator integrations:configure thinkific --set api_key="$THINKIFIC_API_KEY" --enable --read allow --write ask --jsonkosmokrator integrations:doctor thinkific --jsonkosmokrator integrations:status --json
Credentials
Authentication type: API keyapi_key. Configure credentials once, then use the same stored profile from
scripts, coding CLIs, Lua code mode, and the MCP gateway.
Key
Env var
Type
Required
Label
api_key
THINKIFIC_API_KEY
Secret secret
yes
API Key
subdomain
THINKIFIC_SUBDOMAIN
Text text
no
Subdomain
url
THINKIFIC_URL
URL url
no
API Base URL
Call Thinkific Headlessly
Use the generic call form when another coding CLI or script needs a stable universal interface.
Every function below can be called headlessly. The generic form is stable across all integrations;
the provider shortcut is shorter but specific to Thinkific.
thinkific.thinkific_list_courses
Read read
List courses in your Thinkific site. Returns course IDs, names, descriptions, and status. Supports pagination and search.
List enrollments in your Thinkific site. Returns enrollment IDs, user info, course details, progress, and completion status. Supports pagination and filtering by course or user.
Get detailed information about a specific Thinkific enrollment by its ID, including progress percentage, completion status, and associated course and user details.
List enrollments in your Thinkific site. Returns enrollment IDs, user info, course details, progress, and completion status. Supports pagination and filtering by course or user.
Number of enrollments to return per page (default: 25, max: 250).
page
integer
no
Page number for pagination (default: 1).
course_id
integer
no
Filter enrollments by course ID.
user_id
integer
no
Filter enrollments by user ID.
thinkific.thinkific_get_enrollment
Get detailed information about a specific Thinkific enrollment by its ID, including progress percentage, completion status, and associated course and user details.
Headless calls still follow the integration read/write permission policy. Configure read/write defaults
with integrations:configure. Add --force only for trusted automation that should bypass that policy.