Kolide Whoami API

The Whoami API from Kolide — 1 operation(s) for whoami.

Operations 1

GET /whoami Fetch information about the organization

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kolide-whoami-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kolide-whoami-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '2023-05-26'
  title: K2 Admin Users Whoami API
servers:
- url: https://api.kolide.com/
security:
- api_key: []
tags:
- name: Whoami
paths:
  /whoami:
    get:
      summary: Fetch information about the organization
      parameters:
      - name: x-kolide-api-version
        in: header
        description: Specify the API version to be used
        required: false
        schema:
          type: string
          default: '2023-05-26'
      responses:
        '200':
          description: 'Returns information about the customer authenticated by the authorization token.

            '
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/who_am_i'
        '401':
          description: An 'unauthorized' response may occur for features restricted by or unavailable to your organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: an error message describing why the endpoint is unavailable
                    example: This feature has been disabled by your organization
        '403':
          description: A 'forbidden' response may occur if the API key does not have necessary permissions to perform certain actions
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: a succinct error message
                    example: Forbidden
                  message:
                    type: string
                    description: A longer-form error message explaining the reason for the response
                    example: The API key used is not authorized to perform this action
      tags:
      - Whoami
components:
  schemas:
    who_am_i:
      type: object
      properties:
        organization_id:
          type: string
          description: The canonical identifier for this Organization
        organization_name:
          type: string
          description: The name of this Organization
  securitySchemes:
    api_key:
      type: http
      scheme: bearer