v1

latestOpenAPI 3.1.02026-07-261690320.7 KB

List IDE adoption

Returns a list of all the users that have an active IDE token

get/users/ide/adoption

Query parameters

ide'all' | 'vscode' | 'jetbrains' | 'cursor' | 'windsurf' | 'visualstudio' | 'eclipse' | 'kiro' | 'antigravity' | 'mcp'

The IDE to filter by. Default is 'all'.

Response

A list of users that have an active IDE token

idinteger

The user ID.

full_namestring

The full name of the user.

installed_pluginsstring[]

The IDEs that the user has an active token for.

token_last_used_atinteger

The Unix timestamp of the last time the user used the IDE.

has_enabled_safe_chainboolean

Whether the user has enabled the Safe Chain expansion pack.

has_enabled_pre_commitboolean

Whether the user has enabled the Pre-Commit expansion pack.

Example response

[
  {
    "id": 1,
    "full_name": "Wendy Snutz",
    "installed_plugins": [
      "vscode",
      "jetbrains"
    ],
    "token_last_used_at": 1720059659,
    "has_enabled_safe_chain": true,
    "has_enabled_pre_commit": true
  }
]