Metabolon Eula API

The Eula API from Metabolon — 12 operation(s) for eula.

Operations 12

GET /api/v1/eula/download Downloads the current EULA file with proper mime-type and filename. #
GET /api/v2/eula/download Downloads the current EULA file with proper mime-type and filename. #
POST /api/v1/admin/users/eula/upload Uploads a new EULA file for a specific version #
GET /api/v1/admin/users/eula/download/{eulaVersion} Downloads an EULA file for a specific version #
GET /api/v1/admin/users/eula/get-current-version Gets the current EULA version #
POST /api/v1/admin/users/eula/set-current-version/{eulaVersion} Sets the current EULA version #
DELETE /api/v1/admin/users/eula/remove-version/{eulaVersion} Removes a EULA version. Cannot remove the active EULA - it must be deactivated first. #
POST /api/v2/admin/users/eula/upload Uploads a new EULA file for a specific version #
GET /api/v2/admin/users/eula/download/{eulaVersion} Downloads an EULA file for a specific version #
GET /api/v2/admin/users/eula/get-current-version Gets the current EULA version #
POST /api/v2/admin/users/eula/set-current-version/{eulaVersion} Sets the current EULA version #
DELETE /api/v2/admin/users/eula/remove-version/{eulaVersion} Removes a EULA version. Cannot remove the active EULA - it must be deactivated first. #

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-eula-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-eula-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PortalApi Eula API
  version: '1.0'
servers:
- url: https://portal-api.prod.metabolon.com
tags:
- name: Eula
paths:
  /api/v1/eula/download:
    get:
      tags:
      - Eula
      summary: Downloads the current EULA file with proper mime-type and filename.
      operationId: Eula_DownloadCurrentEula
      responses:
        '200':
          description: Current EULA file downloaded successfully
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
  /api/v2/eula/download:
    get:
      tags:
      - Eula
      summary: Downloads the current EULA file with proper mime-type and filename.
      operationId: Eula_DownloadCurrentEula2
      responses:
        '200':
          description: Current EULA file downloaded successfully
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
  /api/v1/admin/users/eula/upload:
    post:
      tags:
      - Eula
      summary: Uploads a new EULA file for a specific version
      operationId: Eula_UploadEula
      requestBody:
        content:
          multipart/form-data:
            schema:
              properties:
                eulaVersion:
                  type:
                  - string
                  - 'null'
                ContentType:
                  type:
                  - string
                  - 'null'
                ContentDisposition:
                  type:
                  - string
                  - 'null'
                Headers:
                  type:
                  - array
                  - 'null'
                  items: {}
                Length:
                  type: integer
                  format: int64
                Name:
                  type:
                  - string
                  - 'null'
                FileName:
                  type:
                  - string
                  - 'null'
      responses:
        '200':
          description: EULA file uploaded successfully
  /api/v1/admin/users/eula/download/{eulaVersion}:
    get:
      tags:
      - Eula
      summary: Downloads an EULA file for a specific version
      operationId: Eula_DownloadEula
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to download
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA file downloaded successfully
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
  /api/v1/admin/users/eula/get-current-version:
    get:
      tags:
      - Eula
      summary: Gets the current EULA version
      operationId: Eula_GetCurrentVersion
      responses:
        '200':
          description: Current EULA version returned
          content:
            application/json:
              schema: {}
  /api/v1/admin/users/eula/set-current-version/{eulaVersion}:
    post:
      tags:
      - Eula
      summary: Sets the current EULA version
      operationId: Eula_SetCurrentVersion
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to set as active
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA version set as active successfully
          content:
            application/json:
              schema: {}
  /api/v1/admin/users/eula/remove-version/{eulaVersion}:
    delete:
      tags:
      - Eula
      summary: Removes a EULA version. Cannot remove the active EULA - it must be deactivated first.
      operationId: Eula_RemoveVersion
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to remove
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA version removed successfully
          content:
            application/json:
              schema: {}
  /api/v2/admin/users/eula/upload:
    post:
      tags:
      - Eula
      summary: Uploads a new EULA file for a specific version
      operationId: Eula_UploadEula2
      requestBody:
        content:
          multipart/form-data:
            schema:
              properties:
                eulaVersion:
                  type:
                  - string
                  - 'null'
                ContentType:
                  type:
                  - string
                  - 'null'
                ContentDisposition:
                  type:
                  - string
                  - 'null'
                Headers:
                  type:
                  - array
                  - 'null'
                  items: {}
                Length:
                  type: integer
                  format: int64
                Name:
                  type:
                  - string
                  - 'null'
                FileName:
                  type:
                  - string
                  - 'null'
      responses:
        '200':
          description: EULA file uploaded successfully
  /api/v2/admin/users/eula/download/{eulaVersion}:
    get:
      tags:
      - Eula
      summary: Downloads an EULA file for a specific version
      operationId: Eula_DownloadEula2
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to download
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA file downloaded successfully
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
  /api/v2/admin/users/eula/get-current-version:
    get:
      tags:
      - Eula
      summary: Gets the current EULA version
      operationId: Eula_GetCurrentVersion2
      responses:
        '200':
          description: Current EULA version returned
          content:
            application/json:
              schema: {}
  /api/v2/admin/users/eula/set-current-version/{eulaVersion}:
    post:
      tags:
      - Eula
      summary: Sets the current EULA version
      operationId: Eula_SetCurrentVersion2
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to set as active
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA version set as active successfully
          content:
            application/json:
              schema: {}
  /api/v2/admin/users/eula/remove-version/{eulaVersion}:
    delete:
      tags:
      - Eula
      summary: Removes a EULA version. Cannot remove the active EULA - it must be deactivated first.
      operationId: Eula_RemoveVersion2
      parameters:
      - name: eulaVersion
        in: path
        required: true
        description: The EULA version to remove
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: EULA version removed successfully
          content:
            application/json:
              schema: {}
x-generator: NSwag v14.6.2.0 (NJsonSchema v11.5.2.0 (Newtonsoft.Json v13.0.0.0))