Oracle Database APEX API

Oracle APEX workspace and application management

Operations 6

GET /apex/workspaces/ Oracle Database Get all APEX workspaces #
GET /apex/workspaces/{workspace_name}/ Oracle Database Get a specific APEX workspace #
GET /apex/workspaces/{workspace_name}/applications/ Oracle Database Get workspace applications #
PUT /apex/workspaces/{workspace_name}/applications/{application_id} Oracle Database Create or update an APEX application #
DELETE /apex/workspaces/{workspace_name}/applications/{application_id} Oracle Database Delete an APEX application #
GET /apex/statistics/overview Oracle Database Get APEX instance overview #

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/oracle-database-apex-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

oracle-database-apex-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle Database Oracle REST Data Services (ORDS) APEX API
  description: RESTful API for Oracle Database management, monitoring, and data access through Oracle REST Data Services. Provides 300+ endpoints across 17 categories including database administration, performance monitoring, Data Guard management, Data Pump operations, pluggable database lifecycle, APEX management, RDF graph operations, and transactional event queues.
  version: 25.4.0
  contact:
    name: Oracle Support
    url: https://support.oracle.com
    email: support@oracle.com
  license:
    name: Oracle Technology Network License
    url: https://www.oracle.com/downloads/licenses/standard-license.html
  termsOfService: https://www.oracle.com/legal/terms.html
servers:
- url: https://{host}:{port}/ords
  description: ORDS Server
  variables:
    host:
      default: localhost
      description: ORDS server hostname
    port:
      default: '8443'
      description: ORDS server port
security:
- oauth2: []
- basicAuth: []
tags:
- name: APEX
  description: Oracle APEX workspace and application management
paths:
  /apex/workspaces/:
    get:
      operationId: getAPEXWorkspaces
      summary: Oracle Database Get all APEX workspaces
      description: Returns a list of all Oracle APEX workspaces.
      tags:
      - APEX
      responses:
        '200':
          description: Workspaces retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APEXWorkspaceList'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /apex/workspaces/{workspace_name}/:
    get:
      operationId: getAPEXWorkspace
      summary: Oracle Database Get a specific APEX workspace
      description: Returns details about a specific Oracle APEX workspace.
      tags:
      - APEX
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Workspace details retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APEXWorkspace'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apex/workspaces/{workspace_name}/applications/:
    get:
      operationId: getAPEXApplications
      summary: Oracle Database Get workspace applications
      description: Returns applications in a specific APEX workspace.
      tags:
      - APEX
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Applications retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APEXApplicationList'
        '401':
          $ref: '#/components/responses/Unauthorized'
  /apex/workspaces/{workspace_name}/applications/{application_id}:
    put:
      operationId: createOrUpdateAPEXApplication
      summary: Oracle Database Create or update an APEX application
      description: Creates a new or updates an existing APEX application.
      tags:
      - APEX
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
      - name: application_id
        in: path
        required: true
        schema:
          type: integer
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/APEXApplicationRequest'
      responses:
        '200':
          description: Application updated successfully
        '201':
          description: Application created successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
    delete:
      operationId: deleteAPEXApplication
      summary: Oracle Database Delete an APEX application
      description: Deletes a specific APEX application.
      tags:
      - APEX
      parameters:
      - name: workspace_name
        in: path
        required: true
        schema:
          type: string
      - name: application_id
        in: path
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Application deleted successfully
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
  /apex/statistics/overview:
    get:
      operationId: getAPEXOverview
      summary: Oracle Database Get APEX instance overview
      description: Returns overview statistics for the APEX instance.
      tags:
      - APEX
      responses:
        '200':
          description: Overview statistics retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/APEXOverview'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  schemas:
    APEXOverview:
      type: object
      properties:
        total_workspaces:
          type: integer
        total_applications:
          type: integer
        total_developers:
          type: integer
    Error:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        type:
          type: string
    APEXApplicationRequest:
      type: object
      properties:
        application_name:
          type: string
        workspace:
          type: string
    APEXApplicationList:
      type: object
      properties:
        items:
          type: array
          items:
            type: object
            properties:
              application_id:
                type: integer
              application_name:
                type: string
              workspace:
                type: string
              version:
                type: string
    APEXWorkspace:
      type: object
      properties:
        workspace_name:
          type: string
        workspace_id:
          type: integer
        schemas:
          type: array
          items:
            type: string
    APEXWorkspaceList:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/APEXWorkspace'
  responses:
    NotFound:
      description: The specified resource was not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Unauthorized:
      description: Authentication required or credentials invalid
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    oauth2:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: /ords/{schema}/oauth/token
          scopes: {}
        authorizationCode:
          authorizationUrl: /ords/{schema}/oauth/auth
          tokenUrl: /ords/{schema}/oauth/token
          scopes: {}
    basicAuth:
      type: http
      scheme: basic
externalDocs:
  description: ORDS REST API Documentation
  url: https://docs.oracle.com/en/database/oracle/oracle-rest-data-services/25.4/orrst/