Oracle WebLogic Server APIs Applications API

Application deployment monitoring

Operations 3

GET /deployments Oracle WebLogic Server APIs List all application deployment metrics #
GET /deployments/{appName} Oracle WebLogic Server APIs Get application deployment metrics #
GET /deployments/{appName}/servlets Oracle WebLogic Server APIs List servlet metrics for an application #

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/weblogic-applications-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

weblogic-applications-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle WebLogic Server APIs Oracle WebLogic Server Deployment Application Deployments Applications API
  description: RESTful API for deploying, undeploying, redeploying, and managing applications and shared libraries on Oracle WebLogic Server. Supports uploading application archives, deploying from the server file system, managing deployment plans, and controlling application lifecycle states across servers and clusters.
  version: 14.1.1.0
  contact:
    name: Oracle Support
    url: https://support.oracle.com
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/legal/terms.html
servers:
- url: https://{host}:{port}/management/weblogic/latest
  description: WebLogic Server Administration Server
  variables:
    host:
      default: localhost
      description: Hostname of the WebLogic Administration Server
    port:
      default: '7001'
      description: Port of the WebLogic Administration Server
security:
- basicAuth: []
tags:
- name: Applications
  description: Application deployment monitoring
paths:
  /deployments:
    get:
      operationId: getDeployments
      summary: Oracle WebLogic Server APIs List all application deployment metrics
      description: Returns monitoring information for all deployed applications across the domain.
      tags:
      - Applications
      responses:
        '200':
          description: List of application deployment metrics
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/DeploymentMetrics'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /deployments/{appName}:
    get:
      operationId: getDeployment
      summary: Oracle WebLogic Server APIs Get application deployment metrics
      description: Returns detailed monitoring information for a specific deployed application.
      tags:
      - Applications
      parameters:
      - $ref: '#/components/parameters/appName'
      responses:
        '200':
          description: Application deployment metrics
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeploymentMetrics'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /deployments/{appName}/servlets:
    get:
      operationId: getDeploymentServlets
      summary: Oracle WebLogic Server APIs List servlet metrics for an application
      description: Returns servlet-level monitoring metrics for a deployed web application.
      tags:
      - Applications
      parameters:
      - $ref: '#/components/parameters/appName'
      responses:
        '200':
          description: List of servlet metrics
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/ServletMetrics'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      properties:
        type:
          type: string
        title:
          type: string
        status:
          type: integer
        detail:
          type: string
    DeploymentMetrics:
      type: object
      properties:
        name:
          type: string
          description: Application name
        type:
          type: string
          description: Application type (ear, war, etc.)
        state:
          type: string
          description: Deployment state
        healthState:
          type: object
          properties:
            state:
              type: string
            subsystemName:
              type: string
        targets:
          type: array
          items:
            type: string
          description: Target servers or clusters
        sessions:
          type: object
          properties:
            openSessionsCurrentCount:
              type: integer
              description: Current open sessions
            openSessionsHighCount:
              type: integer
              description: High watermark of open sessions
            sessionsOpenedTotalCount:
              type: integer
              format: int64
              description: Total sessions opened
    ServletMetrics:
      type: object
      properties:
        name:
          type: string
          description: Servlet name
        contextPath:
          type: string
          description: Servlet context path
        invocationTotalCount:
          type: integer
          format: int64
          description: Total invocations
        executionTimeAverage:
          type: integer
          description: Average execution time in milliseconds
        executionTimeTotal:
          type: integer
          format: int64
          description: Total execution time in milliseconds
        executionTimeHigh:
          type: integer
          description: Highest execution time in milliseconds
        executionTimeLow:
          type: integer
          description: Lowest execution time in milliseconds
        reloadTotalCount:
          type: integer
          description: Number of times the servlet was reloaded
  responses:
    Unauthorized:
      description: Authentication required or invalid credentials
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    NotFound:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  parameters:
    appName:
      name: appName
      in: path
      required: true
      description: The name of the deployed application
      schema:
        type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: WebLogic Server administrator credentials
externalDocs:
  description: Deploying Applications to Oracle WebLogic Server
  url: https://docs.oracle.com/en/middleware/standalone/weblogic-server/14.1.1.0/develop-and-deploy.html