# GET /insurances/list/procedures URL: https://developers.vsee.io/api/insurance-api/get/insurances/list/procedures operationId: listProcedures Auth: User Token — Requires a user access token from login or SSO. List procedures Retrieve list of procedures Parameters: - X-ApiToken (header, string, required) — API token - X-AccountCode (header, string, required) — Account code Responses: - 200 — List of procedures ```json { "data": [ { "id": "10001", "text": "INITIAL CONSULTATION - BASIC ASSESSMENT", "description": "Basic initial consultation to assess patient health status" }, { "id": "10002", "text": "FOLLOW-UP VISIT - CONDITION MONITORING", "description": "Routine follow-up to monitor ongoing health conditions" } ] } ```