HyperDX Team API

The Team API from HyperDX — 6 operation(s) for team.

Operations 6

GET /api/v2/team Get Team #
GET /api/v2/team/members List Team Members #
POST /api/v2/team/invitation Invite Team Member #
GET /api/v2/team/invitations List Team Invitations #
DELETE /api/v2/team/invitation/{id} Delete Team Invitation #
DELETE /api/v2/team/member/{id} Remove Team Member #

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/hyperdx-team-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

hyperdx-team-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HyperDX External Team API
  description: API for managing HyperDX alerts and dashboards
  version: 2.0.0
servers:
- url: /
  description: Your HyperDX instance (http://<host>:<port>)
security:
- BearerAuth: []
tags:
- name: Team
paths:
  /api/v2/team:
    get:
      summary: Get Team
      description: Retrieves the authenticated team's basic settings.
      operationId: getTeam
      tags:
      - Team
      responses:
        '200':
          description: Successfully retrieved team
        '403':
          description: Forbidden
  /api/v2/team/members:
    get:
      summary: List Team Members
      description: Retrieves the team's members.
      operationId: listTeamMembers
      tags:
      - Team
      responses:
        '200':
          description: Successfully retrieved members
  /api/v2/team/invitation:
    post:
      summary: Invite Team Member
      description: Creates a pending invitation for a new email address.
      operationId: inviteTeamMember
      tags:
      - Team
      responses:
        '200':
          description: Successfully created the invitation
        '400':
          description: User already exists
  /api/v2/team/invitations:
    get:
      summary: List Team Invitations
      description: Retrieves the team's pending invitations.
      operationId: listTeamInvitations
      tags:
      - Team
      responses:
        '200':
          description: Successfully retrieved invitations
  /api/v2/team/invitation/{id}:
    delete:
      summary: Delete Team Invitation
      description: Deletes a pending team invitation.
      operationId: deleteTeamInvitation
      tags:
      - Team
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully deleted the invitation
        '404':
          description: Invitation not found
  /api/v2/team/member/{id}:
    delete:
      summary: Remove Team Member
      description: Removes a member from the team.
      operationId: removeTeamMember
      tags:
      - Team
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successfully removed the member
        '400':
          description: Cannot remove yourself from the team
        '404':
          description: Member not found
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key