# skills_orgs_skills_percentile_retrieve Retrieve percentile distribution for a specific skill. This endpoint returns the percentile distribution of points earned by users for a specific skill. Path Parameters: skill_id (int): The ID of the skill to retrieve percentile information for org (str, optional): The platform/organization identifier to filter results Returns: A list of percentile breakpoints for the specified skill. Error Responses: 404 Not Found: If the specified skill doesn't exist Access Control: - Platform admins can access this information - All authenticated users can access this information Endpoint: GET /api/skills/orgs/{org}/skills/{skill_id}/percentile/ Version: 3.59.0-ai-plus Security: PlatformApiKeyAuthentication ## Path parameters: - `org` (string, required) - `skill_id` (integer, required) ## Response 200 fields (application/json): - `username` (string, required) - `points` (number, required) - `percentile` (number, required) Percentile of points for user. If an was provided, this is the percentile of the user relative to users within the org.