# skills_orgs_skills_users_retrieve Retrieve a user's skill information. This endpoint returns information about skills that a user has acquired through the platform. It can return all skills or filter by a specific skill. Path Parameters: org (str): The platform/organization identifier user_id (str): The username of the user to retrieve skill information for Query Parameters: skill_name (str, optional): Filter results to a specific skill Returns: When skill_name is provided: Details about the specific skill including points earned and percentile ranking When skill_name is not provided: A list of all skills the user has acquired with their points Access Control: - Platform admins can access any user's skill information - Users can access their own skill information Endpoint: GET /api/skills/orgs/{org}/skills/users/{user_id}/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `user_id` (string, required) ## Response 200 fields (application/json): - `skill` (object, required) - `skill.id` (integer, required) - `skill.name` (string,null, required) Display name - `skill.platform_key` (string) - `skill.slug` (string,null, required) An additional unique slug field. (Optional) - `skill.data` (any,null, required) Metadata - `courses` (array, required) Courses with skill and associated points - `courses.course_id` (string, required) The edX course ID string for the course. - `courses.points` (integer, required) - `resources` (array, required) Resources with skill and associated points - `resources.name` (string,null) The display name of the resource. - `total_points` (integer, required) Total points for skill - `percentile` (number) Percentile of points for user.