Every profession in FinkiOpenDesk has exactly one associated discussion thread — a community space where students can ask questions, share advice, and discuss the career path. This page documents how to retrieve that discussion thread and how to fetch the list of subjects linked to a profession, which is the data that populates the career roadmap view in the application.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Daniel-Stojanovski/finkiopendesk/llms.txt
Use this file to discover all available pages before exploring further.
GET /api/professions/pid/{professionId}
Returns theProfessionDiscussionDto for the profession identified by professionId. This is distinct from the profession list endpoint (GET /api/professions) and is the canonical way to load the discussion thread along with its full comment history.
This endpoint is public. No authentication is required to read profession discussions.
Path parameters
The unique identifier of the profession whose discussion thread you want to retrieve.
Response
A singleProfessionDiscussionDto object.
Unique identifier for this discussion thread.
Title of the discussion thread.
Introductory description of the discussion thread.
Ordered list of comments posted to this discussion thread.
Example
GET /api/subjects/pid/{professionId}
Returns the list of subjects linked to a profession. This is the endpoint that populates the career roadmap — the subjects shown as a recommended learning path for students pursuing a particular career.This endpoint is served from
SubjectController under the /api/subjects path, not /api/professions. It is documented here because it is the primary companion call when rendering a profession’s career roadmap page.Path parameters
The unique identifier of the profession whose linked subjects you want to retrieve.
Response
An array ofSubjectDto objects. Returns an empty array if no subjects are linked to the profession.
Unique identifier for the subject.
Subject name.
Description of the subject’s content and goals.
The discussion thread associated with this subject.
Tags attached to this subject.