Metabolon Sample Sets Info API

The SampleSetsInfo API from Metabolon — 6 operation(s) for samplesetsinfo.

Operations 6

GET /api/v1/samplesetsinfo/{projectId}/{sampleSetId} Retrieves a sample sets info #
GET /api/v1/samplesetsinfo/project/{projectId} Retrieves all sample sets infos for a specific project #
GET /api/v1/samplesetsinfo/project/{projectId}/count Retrieves the number of sample sets infos for a specific project #
GET /api/v2/samplesetsinfo/{projectId}/{sampleSetId} Retrieves a sample sets info #
GET /api/v2/samplesetsinfo/project/{projectId} Retrieves all sample sets infos for a specific project #
GET /api/v2/samplesetsinfo/project/{projectId}/count Retrieves the number of sample sets infos for a specific project #

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/metabolon-samplesetsinfo-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

metabolon-samplesetsinfo-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PortalApi Sample Sets Info API
  version: '1.0'
servers:
- url: https://portal-api.prod.metabolon.com
tags:
- name: SampleSetsInfo
paths:
  /api/v1/samplesetsinfo/{projectId}/{sampleSetId}:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves a sample sets info
      operationId: SampleSetsInfo_GetSampleSetsInfo
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      - name: sampleSetId
        in: path
        required: true
        description: The sampleSetId to search on
        schema:
          type: string
          format: guid
        x-position: 2
      responses:
        '200':
          description: A matching sample sets info was found and returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SampleSetInfo'
  /api/v1/samplesetsinfo/project/{projectId}:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves all sample sets infos for a specific project
      operationId: SampleSetsInfo_GetSampleSetsInfos
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: A [possibly empty] enumeration of project sample sets info items was returned
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SampleSetInfo'
  /api/v1/samplesetsinfo/project/{projectId}/count:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves the number of sample sets infos for a specific project
      operationId: SampleSetsInfo_GetSampleSetsCount
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: A quantity of matching sample sets info was found and returned
          content:
            application/json:
              schema:
                type: integer
                format: int32
  /api/v2/samplesetsinfo/{projectId}/{sampleSetId}:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves a sample sets info
      operationId: SampleSetsInfo_GetSampleSetsInfo2
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      - name: sampleSetId
        in: path
        required: true
        description: The sampleSetId to search on
        schema:
          type: string
          format: guid
        x-position: 2
      responses:
        '200':
          description: A matching sample sets info was found and returned
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SampleSetInfo'
  /api/v2/samplesetsinfo/project/{projectId}:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves all sample sets infos for a specific project
      operationId: SampleSetsInfo_GetSampleSetsInfos2
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: A [possibly empty] enumeration of project sample sets info items was returned
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SampleSetInfo'
  /api/v2/samplesetsinfo/project/{projectId}/count:
    get:
      tags:
      - SampleSetsInfo
      summary: Retrieves the number of sample sets infos for a specific project
      operationId: SampleSetsInfo_GetSampleSetsCount2
      parameters:
      - name: projectId
        in: path
        required: true
        description: The projectId to search on
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: A quantity of matching sample sets info was found and returned
          content:
            application/json:
              schema:
                type: integer
                format: int32
components:
  schemas:
    SampleSetInfo:
      type: object
      additionalProperties: false
      properties:
        projectId:
          type: string
          format: guid
        sampleSetId:
          type: string
          format: guid
        numSamples:
          type: integer
          format: int32
        numMetabolites:
          type: integer
          format: int32
        numComparison:
          type: integer
          format: int32
x-generator: NSwag v14.6.2.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0))