Genialis About API

The about API from Genialis — 3 operation(s) for about.

Operations 3

GET /about/process_resources #
GET /about/resdk_minimal_supported_version #
GET /about/versions #

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/genialis-about-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

genialis-about-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Genialis base About API
  version: 0.0.0
  description: Backend of the Genialis platform.
servers:
- url: https://app.genialis.com
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: about
paths:
  /about/process_resources:
    get:
      operationId: about_process_resources_retrieve
      description: Return the resources of the installed platform.
      tags:
      - about
      security:
      - cookieAuth: []
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Resources'
          description: ''
  /about/resdk_minimal_supported_version:
    get:
      operationId: about_resdk_minimal_supported_version_retrieve
      description: Return the minimal supported resdk version.
      tags:
      - about
      security:
      - cookieAuth: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ReSDKMinimalSupportedVersion'
          description: ''
  /about/versions:
    get:
      operationId: about_versions_retrieve
      description: Return the versions of the installed Genialis packages.
      tags:
      - about
      security:
      - cookieAuth: []
      - {}
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Versions'
          description: ''
components:
  schemas:
    Resources:
      type: object
      description: Serialize the platform resource information.
      properties:
        max_memory:
          type: integer
        max_cores:
          type: integer
        max_storage:
          type: integer
        min_memory:
          type: integer
        min_cores:
          type: integer
        min_storage:
          type: integer
    ReSDKMinimalSupportedVersion:
      type: object
      description: Serialize minimal supporter resdk version.
      properties:
        minimal_supported_version:
          type: string
          readOnly: true
      required:
      - minimal_supported_version
    Versions:
      type: object
      properties:
        resolwe:
          type: string
          readOnly: true
        resolwe-bio:
          type: string
          readOnly: true
        genialis-bio:
          type: string
          readOnly: true
      required:
      - genialis-bio
      - resolwe
      - resolwe-bio
  securitySchemes:
    cookieAuth:
      type: apiKey
      in: cookie
      name: sessionid