Brellium Question Sets API

The Question Sets API from Brellium — 1 operation(s) for question sets.

Operations 1

GET /question-sets List question sets

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/brellium-question-sets-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

brellium-question-sets-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.0
  title: Brellium Audits Question Sets API
  description: API for base Brellium functionality.
  termsOfService: https://brellium.com/terms
  contact:
    name: Brellium Team
    email: support@brellium.com
    url: http://brellium.com
servers:
- url: https://api.brellium.com/v1
tags:
- name: Question Sets
paths:
  /question-sets:
    get:
      summary: List question sets
      responses:
        '200':
          description: List of question sets.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/QuestionSet'
      security:
      - bearerAuth: []
      tags:
      - Question Sets
components:
  schemas:
    QuestionSet:
      type: object
      properties:
        set_id:
          type: string
          description: Question set id.
        name:
          type: string
          description: Name of set.
        questions:
          type: array
          items:
            type: object
            properties:
              question_id:
                type: string
                description: Question id.
              query:
                type: string
                description: The query to be ran on the document.
              question_type:
                type: string
                description: 'The type of question: default question determine chart quality and affect the audit score, informational questions provide clinical context but do not affect the audit score.'
              severity:
                type: string
                description: 'Low, normal, high questions determine how heavily the question is weighted in the audit score: critical questions will cause the audit to fail if answered negatively; points penalty questions will cause the specified number of points to be deducted from the audit score; none questions do not affect the audit score.'
              remediation:
                type: string
                description: The remediation for the question.
              affirmation:
                type: string
                description: The affirmation for the question.
            required:
            - question_id
            - query
          description: The questions in the set.
      required:
      - set_id
      - questions
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT