OPAQUE Organizations API

The organizations API from OPAQUE — 4 operation(s) for organizations.

Operations 4

POST /{version}/organization/invite Invite a new organization member via email #
GET /{version}/organization/invitation/{invitation-id} Get an invitation to organization #
GET /{version}/organization/invitations Get invitations to organization #
GET /{version}/organization/members Get organization members #

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/opaque-organizations-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

opaque-organizations-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Opaque UI Organizations API
  version: '2.5'
  description: This documentation details the REST API endpoints that the client exposes.
  contact:
    name: Opaque Systems
    email: hello@opaque.co
servers:
- url: http://localhost:5001/
  description: Local Server
security:
- sessionToken: []
  refreshTokenCookie: []
tags:
- name: organizations
paths:
  /{version}/organization/invite:
    parameters:
    - $ref: '#/components/parameters/version'
    post:
      summary: Invite a new organization member via email
      operationId: invite_organization_member
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: ../models/OrganizationInvitation.yaml
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  description: Invitee email
                  format: email
                organizationRoles:
                  type: array
                  items:
                    type: string
                    description: new users are not allowed to take on the organization_admin role
                    enum:
                    - consortium_admin
              required:
              - email
              - organizationRoles
      description: Send email invite to a new user to join the current user's organization. Only the organization admin can call this endpoint.
      tags:
      - organizations
  /{version}/organization/invitation/{invitation-id}:
    parameters:
    - $ref: '#/components/parameters/version'
    - schema:
        type: string
      name: invitation-id
      in: path
      required: true
    get:
      summary: Get an invitation to organization
      description: Get a specific invitation to an organization. Only the organization admin can call this endpoint.
      operationId: get_organization_invitation
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: ../models/OrganizationInvitation.yaml
      tags:
      - organizations
  /{version}/organization/invitations:
    parameters:
    - $ref: '#/components/parameters/version'
    get:
      summary: Get invitations to organization
      description: Get all the invitations to an organization. Only the organization admin can call this endpoint.
      operationId: get_organization_invitations
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: ../models/OrganizationInvitation.yaml
      tags:
      - organizations
  /{version}/organization/members:
    parameters:
    - $ref: '#/components/parameters/version'
    get:
      summary: Get organization members
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: ../models/UserWithRoles.yaml
      operationId: get_organization_members
      description: Get the members of the organization.
      tags:
      - organizations
      parameters: []
      security:
      - sessionToken: []
        refreshTokenCookie: []
      x-internal: true
components:
  parameters:
    version:
      in: path
      name: version
      schema:
        type: string
        default: v1.2
        example: v1.2
      description: Version of the API to call
      required: true
  securitySchemes:
    sessionToken:
      type: http
      scheme: bearer
      description: The bearer token is obtained from the `/login` and `/register` endpoints.
    userIdentitySecret:
      name: userIdentitySecret
      type: apiKey
      in: cookie
      description: A binary blob derived from a user's passkey. It can be obtained from the `/login` and `/register` endpoints.
    sessionTokenCookie:
      name: sessionTokenCookie
      type: apiKey
      in: cookie
    refreshTokenCookie:
      name: refreshTokenCookie
      type: apiKey
      in: cookie
x-origin: origin
x-extension-with: x-extension-with