Metabolon Spectral Data API

The SpectralData API from Metabolon — 4 operation(s) for spectraldata.

Operations 4

GET /api/v1/spectraldata/{projectId} Retrieves spectral data download metadata for a project #
GET /api/v2/spectraldata/{projectId} Retrieves spectral data download metadata for a project #
GET /api/v2/spectraldata/{projectId}/download Create S3 presigned download URL for spectral data. Use other route for metadata, including possible decryption key. #

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-spectraldata-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-spectraldata-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PortalApi Spectral Data API
  version: '1.0'
servers:
- url: https://portal-api.prod.metabolon.com
tags:
- name: SpectralData
paths:
  /api/v1/spectraldata/{projectId}:
    get:
      tags:
      - SpectralData
      summary: Retrieves spectral data download metadata for a project
      operationId: SpectralData_Get
      parameters:
      - name: projectId
        in: path
        required: true
        description: Project id
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: Successfully returned the spectral data download metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpectralDataDownloadRecord'
  /api/v1/spectraldata/{projectId}/download:
    get:
      tags:
      - SpectralData
      summary: Create S3 presigned download URL for spectral data. Use other route for metadata, including possible decryption key.
      operationId: SpectralData_GetDownloadLink
      parameters:
      - name: projectId
        in: path
        required: true
        description: Project id
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: Successfully returned the spectral data download link
          content:
            application/json:
              schema:
                type: string
  /api/v2/spectraldata/{projectId}:
    get:
      tags:
      - SpectralData
      summary: Retrieves spectral data download metadata for a project
      operationId: SpectralData_Get2
      parameters:
      - name: projectId
        in: path
        required: true
        description: Project id
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: Successfully returned the spectral data download metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpectralDataDownloadRecord'
  /api/v2/spectraldata/{projectId}/download:
    get:
      tags:
      - SpectralData
      summary: Create S3 presigned download URL for spectral data. Use other route for metadata, including possible decryption key.
      operationId: SpectralData_GetDownloadLink2
      parameters:
      - name: projectId
        in: path
        required: true
        description: Project id
        schema:
          type: string
          format: guid
        x-position: 1
      responses:
        '200':
          description: Successfully returned the spectral data download link
          content:
            application/json:
              schema:
                type: string
components:
  schemas:
    SpectralDataDownloadRecord:
      allOf:
      - $ref: '#/components/schemas/Record'
      - type: object
        additionalProperties: false
        properties:
          projectId:
            type: string
            format: guid
          locationId:
            type:
            - string
            - 'null'
          fileSize:
            type: integer
            format: int32
          uploadDate:
            type: string
            format: date-time
          availableDate:
            type:
            - string
            - 'null'
            format: date-time
          zipDecryptKey:
            type:
            - string
            - 'null'
    Record:
      type: object
      x-abstract: true
      additionalProperties: false
      properties:
        createdDate:
          type:
          - string
          - 'null'
          format: date-time
        modifiedDate:
          type:
          - string
          - 'null'
          format: date-time
x-generator: NSwag v14.6.2.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0))