Seqera Labs service-info API

Seqera Platform API service information

Operations 1

GET /service-info General Seqera service features and version. #

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/seqera-labs-service-info-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

seqera-labs-service-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: info@seqera.io
    url: https://seqera.io
  description: Seqera Platform services API
  title: Seqera actions Service Info API
  version: 1.181.0
servers:
- url: https://api.cloud.seqera.io
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- description: Seqera Platform API service information
  name: service-info
paths:
  /service-info:
    get:
      operationId: Info
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceInfoResponse'
          description: OK
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad request
      summary: General Seqera service features and version.
      tags:
      - service-info
components:
  schemas:
    NavbarConfig:
      properties:
        menus:
          items:
            $ref: '#/components/schemas/NavbarConfig.NavbarMenu'
          type: array
      type: object
    Analytics:
      properties:
        hubspotId:
          type: string
        posthogApiHost:
          type: string
        posthogApiKey:
          type: string
      type: object
    ServiceInfo:
      properties:
        allowInstanceCredentials:
          type: boolean
        allowLocalRepos:
          deprecated: true
          type: boolean
        allowNextflowCliLogs:
          type: boolean
        analytics:
          $ref: '#/components/schemas/Analytics'
        apiVersion:
          type: string
        authTypes:
          items:
            type: string
          type: array
        commitId:
          type: string
        contactEmail:
          type: string
        contentMaxFileSize:
          format: int64
          type: integer
        contentUrl:
          type: string
        evalWorkspaceIds:
          items:
            format: int64
            type: integer
          type: array
        forgePrefix:
          type: string
        groundswellAllowedWorkspaces:
          items:
            format: int64
            type: integer
          type: array
        groundswellEnabled:
          type: boolean
        heartbeatInterval:
          format: int32
          type: integer
        landingUrl:
          type: string
        launchConfigTextMaxSize:
          format: int32
          type: integer
        launchParamsTextMaxSize:
          format: int32
          type: integer
        llmEnabled:
          type: boolean
        loginPath:
          type: string
        logoutUrl:
          type:
          - string
          - 'null'
        navbar:
          $ref: '#/components/schemas/NavbarConfig'
        seqeraAgentBackendUrl:
          type:
          - string
          - 'null'
        seqeraAiBaseUrl:
          type:
          - string
          - 'null'
        seqeraCloud:
          type: boolean
        seqeraComputeEnabled:
          type: boolean
        termsOfUseUrl:
          type: string
        userWorkspaceEnabled:
          type: boolean
        version:
          type: string
        waveEnabled:
          type: boolean
      type: object
    NavbarConfig.NavbarMenu:
      properties:
        label:
          type: string
        url:
          type: string
      type: object
    ErrorResponse:
      properties:
        message:
          type: string
      required:
      - message
      type: object
    ServiceInfoResponse:
      properties:
        serviceInfo:
          $ref: '#/components/schemas/ServiceInfo'
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: jwt
      scheme: bearer
      type: http