Sequel company API

Calls to managing companies

Operations 7

GET /company/{companyId} Find company by ID #
POST /company/{companyId} Update a company with json data #
GET /company/{companyId}/circleRecordings Get all circle recordings for a company #
POST /company/{companyId}/create Create a new company under a parent company #
GET /company/{companyId}/events List all events under a parent company #
GET /company/{companyId}/list List all companies under a parent company #
POST /company/{companyId}/metadata Update metadata for the company #

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/sequel-company-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

sequel-company-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Introvoke Analytics Company API
  description: This is the documentation required to access the Introvoke API. It contains information on how to create Companies, add events to each company and manage the presenters.
  termsOfService: https://www.introvoke.com/terms/
  contact:
    email: support@introvoke.com
  version: 1.0.0
servers:
- url: https://api.introvoke.com/api/v1
security:
- bearerAuth: []
tags:
- name: company
  description: Calls to managing companies
paths:
  /company/{companyId}:
    get:
      tags:
      - company
      summary: Find company by ID
      description: Returns a single company
      operationId: getcompanyById
      parameters:
      - name: companyId
        in: path
        description: ID of company to return
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Company'
        '400':
          description: Invalid ID supplied
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          description: company not found
          content: {}
    post:
      tags:
      - company
      summary: Update a company with json data
      operationId: updatecompanyWithJson
      parameters:
      - name: companyId
        in: path
        description: ID of company that needs to be updated
        required: true
        schema:
          type: string
          format: uuid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyUpdate'
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Company'
        '400':
          description: Company id not found
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          description: Invalid input
          content: {}
  /company/{companyId}/circleRecordings:
    get:
      tags:
      - company
      summary: Get all circle recordings for a company
      description: Returns a list of all circle recordings associated with the company
      operationId: getCompanyCircleRecordings
      parameters:
      - name: companyId
        in: path
        description: ID of company to get circle recordings for
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompanyCircleRecording'
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '404':
          description: Company not found
          content: {}
  /company/{companyId}/create:
    post:
      tags:
      - company
      summary: Create a new company under a parent company
      operationId: addCompanyToParent
      parameters:
      - name: companyId
        in: path
        description: ID of company to return
        required: true
        schema:
          type: string
      requestBody:
        description: Company object that needs to be added under a parent company
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CompanyCreate'
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Company'
        '400':
          description: Invalid input
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          description: Parent company has an invalid license
          content: {}
  /company/{companyId}/events:
    get:
      tags:
      - company
      summary: List all events under a parent company
      operationId: listCompanyEvents
      parameters:
      - name: companyId
        in: path
        description: ID of company to return
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Event'
        '400':
          description: Invalid input
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          description: Parent company has an invalid license
          content: {}
  /company/{companyId}/list:
    get:
      tags:
      - company
      summary: List all companies under a parent company
      operationId: listChildCompanies
      parameters:
      - name: companyId
        in: path
        description: ID of company to return
        required: true
        schema:
          type: string
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Company'
        '400':
          description: Invalid input
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
        '403':
          description: Parent company has an invalid license
          content: {}
  /company/{companyId}/metadata:
    post:
      tags:
      - company
      summary: Update metadata for the company
      operationId: updateCompanyMetadata
      parameters:
      - name: companyId
        in: path
        description: ID of company to update
        required: true
        schema:
          type: string
      requestBody:
        description: Metadata object to update in the company
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Metadata'
        required: true
      responses:
        '200':
          description: successful operation
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Metadata'
        '400':
          description: Invalid input
          content: {}
        '401':
          $ref: '#/components/responses/UnauthorizedError'
components:
  schemas:
    Metadata:
      type: object
      additionalProperties:
        items:
          additionalProperties: false
          properties:
            value:
              type: string
          required:
          - value
          type: object
        type: array
    CompanyCircleRecording:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier of the circle recording
        name:
          type: string
          description: Name of the circle recording
        url:
          type: string
          description: Public URL to access the recording
        downloadVideoUrl:
          type: string
          description: URL to download the video recording
      required:
      - id
      - name
      - url
      - downloadVideoUrl
    Company:
      type: object
      properties:
        uid:
          type: string
        name:
          type: string
        logo:
          type: string
        parentCompanyId:
          type:
          - string
          - 'null'
        eventIds:
          description: Holds an array of all the events for this company
          type:
          - array
          - 'null'
          items:
            type: string
        metadata:
          $ref: '#/components/schemas/Metadata'
      xml:
        name: Company
    CompanyCreate:
      required:
      - name
      - logo
      - metadata
      type: object
      properties:
        name:
          type: string
          description: Name of the company
        logo:
          type: string
          description: Logo of the company
    CompanyUpdate:
      type: object
      properties:
        name:
          type: string
          description: Updated name of the company
        logo:
          type: string
          description: Updated logo of the company
    Event:
      type: object
      properties:
        uid:
          type: string
        companyUid:
          type: string
        creatorUid:
          type: string
        name:
          type: string
        picture:
          type:
          - string
          - 'null'
        startDate:
          type: string
          format: date-time
        endDate:
          type: string
          format: date-time
        timezone:
          type: string
        type:
          type: string
          enum:
          - Virtual
          - LiveStreamInPerson
        metadata:
          description: Can be any value - string, number, boolean, array or object.
          type:
          - object
          - 'null'
        networkingHub:
          type:
          - string
          - 'null'
          description: (Optional) The networking hub linked when networking starts
        presenters:
          type:
          - array
          - 'null'
          items:
            type: string
        organizers:
          type:
          - array
          - 'null'
          items:
            type: string
        isRegistrationModeEnabled:
          type:
          - boolean
          - 'null'
        isAttendeeRegistrationModeEnabled:
          type:
          - boolean
          - 'null'
        privateEventInfo:
          type:
          - object
          - 'null'
          properties:
            attendeePasscode:
              type: string
            presenterPasscode:
              type: string
            hostPasscode:
              type: string
            rtmpKey:
              type: string
            rtmpUrl:
              type: string
        closeCaptioningSettings:
          type:
          - object
          - 'null'
          properties:
            transcription:
              type:
              - object
              - 'null'
              properties:
                enabled:
                  type:
                  - boolean
                  - 'null'
      xml:
        name: Event
  responses:
    UnauthorizedError:
      description: Access token is missing or invalid
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer