International Business Machines Models API

Manage custom models.

Operations 5

GET /v1/models/sentiment International Business Machines List sentiment models #
GET /v1/models/categories International Business Machines List categories models #
GET /v1/models International Business Machines List models #
GET /v1/models/{model_id} International Business Machines Get a model #
GET /ml/v1/foundation_model_specs International Business Machines List foundation models #

Documentation

Specifications

Schemas & Data

Other Resources

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/international-business-machines-models-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

international-business-machines-models-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: International Business Machines Models API
  version: 1.0.0
  license:
    name: IBM Cloud Terms
    url: https://www.ibm.com/terms
  description: 'Operations tagged Models across 3 of this provider''s published API definitions: ibm-natural-language-understanding-openapi.yml, ibm-speech-to-text-openapi.yml, ibm-watsonx-ai-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.us-south.natural-language-understanding.watson.cloud.ibm.com
  description: US South (Dallas)
- url: https://api.eu-de.natural-language-understanding.watson.cloud.ibm.com
  description: EU Central (Frankfurt)
- url: https://api.us-south.speech-to-text.watson.cloud.ibm.com
  description: US South (Dallas)
- url: https://api.eu-de.speech-to-text.watson.cloud.ibm.com
  description: EU Central (Frankfurt)
- url: https://us-south.ml.cloud.ibm.com
  description: US South (Dallas)
- url: https://eu-de.ml.cloud.ibm.com
  description: EU Central (Frankfurt)
- url: https://eu-gb.ml.cloud.ibm.com
  description: EU (London)
- url: https://jp-tok.ml.cloud.ibm.com
  description: AP (Tokyo)
security:
- bearerAuth: []
tags:
- name: Models
  description: Manage custom models.
paths:
  /v1/models/sentiment:
    get:
      operationId: listSentimentModels
      summary: International Business Machines List sentiment models
      description: List available custom sentiment models.
      tags:
      - Models
      parameters:
      - name: version
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
    servers:
    - url: https://api.us-south.natural-language-understanding.watson.cloud.ibm.com
      description: US South (Dallas)
    - url: https://api.eu-de.natural-language-understanding.watson.cloud.ibm.com
      description: EU Central (Frankfurt)
  /v1/models/categories:
    get:
      operationId: listCategoriesModels
      summary: International Business Machines List categories models
      description: List available custom categories models.
      tags:
      - Models
      parameters:
      - name: version
        in: query
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
    servers:
    - url: https://api.us-south.natural-language-understanding.watson.cloud.ibm.com
      description: US South (Dallas)
    - url: https://api.eu-de.natural-language-understanding.watson.cloud.ibm.com
      description: EU Central (Frankfurt)
  /v1/models:
    get:
      operationId: listModels
      summary: International Business Machines List models
      description: List all available language models.
      tags:
      - Models
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  models:
                    type: array
                    items:
                      $ref: '#/components/schemas/SpeechModel'
    servers:
    - url: https://api.us-south.speech-to-text.watson.cloud.ibm.com
      description: US South (Dallas)
    - url: https://api.eu-de.speech-to-text.watson.cloud.ibm.com
      description: EU Central (Frankfurt)
  /v1/models/{model_id}:
    get:
      operationId: getModel
      summary: International Business Machines Get a model
      description: Get information about a specific language model.
      tags:
      - Models
      parameters:
      - name: model_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SpeechModel'
    servers:
    - url: https://api.us-south.speech-to-text.watson.cloud.ibm.com
      description: US South (Dallas)
    - url: https://api.eu-de.speech-to-text.watson.cloud.ibm.com
      description: EU Central (Frankfurt)
  /ml/v1/foundation_model_specs:
    get:
      operationId: listFoundationModels
      summary: International Business Machines List foundation models
      description: Retrieve the list of available foundation models.
      tags:
      - Models
      parameters:
      - name: version
        in: query
        required: true
        schema:
          type: string
      - name: limit
        in: query
        schema:
          type: integer
      - name: offset
        in: query
        schema:
          type: integer
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FoundationModelsResponse'
    servers:
    - url: https://us-south.ml.cloud.ibm.com
      description: US South (Dallas)
    - url: https://eu-de.ml.cloud.ibm.com
      description: EU Central (Frankfurt)
    - url: https://eu-gb.ml.cloud.ibm.com
      description: EU (London)
    - url: https://jp-tok.ml.cloud.ibm.com
      description: AP (Tokyo)
components:
  schemas:
    SpeechModel:
      type: object
      properties:
        name:
          type: string
        language:
          type: string
        rate:
          type: integer
        url:
          type: string
        description:
          type: string
    FoundationModelsResponse:
      type: object
      properties:
        total_count:
          type: integer
        limit:
          type: integer
        offset:
          type: integer
        resources:
          type: array
          items:
            type: object
            properties:
              model_id:
                type: string
              label:
                type: string
              provider:
                type: string
              source:
                type: string
              tasks:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    label:
                      type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: IAM Token
x-refined-from:
- ibm-natural-language-understanding-openapi.yml
- ibm-speech-to-text-openapi.yml
- ibm-watsonx-ai-openapi.yml