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.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/hexa-users-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Hex Cells Users API
version: 1.0.0
description: API specification for the Hex External API
license:
name: UNLICENSED
contact: {}
servers:
- url: https://app.hex.tech/api
security:
- bearerAuth: []
tags:
- name: Users
paths:
/v1/users/me:
get:
operationId: Me
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/MeResponse'
'400':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'403':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'500':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
parameters: []
tags:
- Users
/v1/users:
get:
operationId: ListUsers
responses:
'200':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/ListUsersResponse'
'400':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'403':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'500':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
parameters:
- in: query
name: after
required: false
schema:
default: null
- in: query
name: before
required: false
schema:
default: null
- in: query
name: limit
required: false
schema:
$ref: '#/components/schemas/LargerPageSize'
- in: query
name: sortBy
required: false
schema:
$ref: '#/components/schemas/ListUsersSortByEnum'
- in: query
name: sortDirection
required: false
schema:
$ref: '#/components/schemas/SortDirectionEnum'
- in: query
name: groupId
required: false
schema:
default: null
tags:
- Users
/v1/users/{userId}/deactivate:
post:
operationId: DeactivateUser
responses:
'200':
description: ''
'400':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'403':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
'500':
description: ''
content:
application/json:
schema:
$ref: '#/components/schemas/TsoaErrorResponsePayload'
parameters:
- in: path
name: userId
required: true
schema:
$ref: '#/components/schemas/UserId'
tags:
- Users
components:
schemas:
TraceId:
type: string
description: A unique identifier for this API request. The Hex Support team may request this value when debugging an issue.
UserId:
type: string
format: uuid
description: Unique ID for a user. This can be found from the users page (in Settings).
pattern: ^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$
UserApiResource:
properties:
id:
$ref: '#/components/schemas/UserId'
name:
$ref: '#/components/schemas/Name'
role:
$ref: '#/components/schemas/OrgRole'
email:
type: string
lastLoginDate:
type:
- string
- 'null'
required:
- id
- role
- email
- lastLoginDate
type: object
additionalProperties: false
Name:
type: string
minLength: 1
EnumValues_typeofSortDirectionEnum_:
type: string
enum:
- DESC
- ASC
EnumValues_typeofListUsersSortByEnum_:
type: string
enum:
- NAME
- EMAIL
EnumValues_typeofOrgRole_:
type: string
enum:
- ADMIN
- MANAGER
- EDITOR
- EXPLORER
- MEMBER
- GUEST
- EMBEDDED_USER
- ANONYMOUS
MeResponse:
properties:
id:
$ref: '#/components/schemas/UserId'
name:
$ref: '#/components/schemas/Name'
role:
$ref: '#/components/schemas/OrgRole'
email:
type: string
org:
properties:
id:
$ref: '#/components/schemas/OrgId'
required:
- id
type: object
token:
properties:
exp:
type:
- number
- 'null'
format: double
required:
- exp
type: object
required:
- id
- role
- email
- org
type: object
additionalProperties: false
ListUsersResponse:
properties:
values:
items:
$ref: '#/components/schemas/UserApiResource'
type: array
pagination:
$ref: '#/components/schemas/PaginationApiResource'
required:
- values
- pagination
type: object
additionalProperties: false
ApiPaginationCursor:
type: string
description: 'A cursor string used with `before` and `after` parameters to paginate through a list
of items on the API.'
OrgId:
type: string
description: Unique ID for a workspace.
SortDirectionEnum:
$ref: '#/components/schemas/EnumValues_typeofSortDirectionEnum_'
ListUsersSortByEnum:
$ref: '#/components/schemas/EnumValues_typeofListUsersSortByEnum_'
TsoaErrorResponsePayload:
properties:
details:
type: string
traceId:
$ref: '#/components/schemas/TraceId'
reason:
type: string
required:
- reason
type: object
PaginationApiResource:
properties:
after:
allOf:
- $ref: '#/components/schemas/ApiPaginationCursor'
before:
allOf:
- $ref: '#/components/schemas/ApiPaginationCursor'
required:
- after
- before
type: object
additionalProperties: false
OrgRole:
$ref: '#/components/schemas/EnumValues_typeofOrgRole_'
LargerPageSize:
type: integer
format: int32
default: '25'
description: Number of results to fetch per page for paginated requests
minimum: 1
maximum: 500
securitySchemes:
bearerAuth:
type: http
scheme: bearer