Skip to main content
GET
/
skills
/
{skill_id}
/
proficiency
Get skill proficiency by user
curl --request GET \
  --url https://api.exec.com/rest/v1/skills/{skill_id}/proficiency \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "user": {
        "id": "u1a2b3c4d5e6",
        "email": "[email protected]",
        "first_name": "Jane",
        "last_name": "Smith"
      },
      "score": 82,
      "tier": "proficient",
      "observation_count": 14,
      "last_practiced_at": "2026-03-12T10:00:00Z"
    },
    {
      "user": {
        "id": "u7v8w9x0y1z2",
        "email": "[email protected]",
        "first_name": "Bob",
        "last_name": "Jones"
      },
      "score": null,
      "tier": "insufficient_data",
      "observation_count": 2,
      "last_practiced_at": "2026-03-10T15:30:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "page_size": 50,
    "total_count": 2,
    "total_pages": 1
  }
}

Authorizations

Authorization
string
header
required

API key created in Settings > API.

Format: exec_live_ followed by 40 alphanumeric characters.

Path Parameters

skill_id
string
required

The skill's unique identifier (UUID)

Query Parameters

user_ids
string

Comma-separated user IDs to filter by. When combined with user_emails, results are unioned (all matching users from either list are included).

user_emails
string

Comma-separated user email addresses to filter by. When combined with user_ids, results are unioned (all matching users from either list are included).

group_ids
string

Comma-separated workspace group IDs to filter by

end_date
string<date-time>

Calculate proficiency as of this date (ISO 8601). Defaults to now.

exclude_system_users
boolean
default:false

Exclude sessions from system users (emails ending in @exec.com). Default false.

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
page_size
integer
default:50

Number of results per page (max 100)

Required range: 1 <= x <= 100

Response

Per-user proficiency data for the skill

data
object[]
pagination
object