# Get budget fringe Retrieve a specific fringe benefit Endpoint: GET /projects/{projectId}/budget/fringes/{fringeId} Version: 1.0.0 Security: ApiKeyAuth ## Path parameters: - `projectId` (string, required) Project identifier (alias or ID) Example: "nike-spring-2024" - `fringeId` (string, required) Fringe identifier (alias or ID) Example: "fica" ## Query parameters: - `idMode` (string) ID interpretation mode. Controls how path and query parameter IDs (like lineId, accountId, phaseId) are interpreted - 'user' for human-readable IDs (account codes, phase names), 'system' for database IDs (UUIDs/nanoids). Also affects the format of IDs in responses. Enum: "user", "system" ## Response 200 fields (application/json): - `id` (string, required) Fringe system identifier Example: "fringe-001" - `code` (string,null) User-friendly fringe code Example: "FICA" - `description` (string,null) Fringe benefit description Example: "Social Security Tax" - `units` (string, required) Fringe calculation units Enum: "percent", "flat" - `rate` (number,null) Fringe rate (decimal for percent, amount for flat) Example: 0.0765 - `cutoff` (number,null) Maximum salary subject to this fringe Example: 160200 ## Response 401 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (object) Additional error details Example: {"field":"projectId","reason":"Project not found"} - `code` (string) Error code Example: "VALIDATION_ERROR" ## Response 404 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (object) Additional error details Example: {"field":"projectId","reason":"Project not found"} - `code` (string) Error code Example: "VALIDATION_ERROR" ## Response 500 fields (application/json): - `error` (string, required) Error message Example: "Invalid request parameters" - `details` (object) Additional error details Example: {"field":"projectId","reason":"Project not found"} - `code` (string) Error code Example: "VALIDATION_ERROR"