Oracle Database Open Service Broker API

Open Service Broker API compliant service provisioning

Operations 3

GET /openservicebroker/v2/catalog Oracle Database Get service catalog #
PUT /openservicebroker/v2/service_instances/{instance_id} Oracle Database Provision a service instance #
DELETE /openservicebroker/v2/service_instances/{instance_id} Oracle Database Deprovision a service instance #

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-open-service-broker-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-open-service-broker-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle Database Oracle REST Data Services (ORDS) Open Service Broker 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: Open Service Broker
  description: Open Service Broker API compliant service provisioning
paths:
  /openservicebroker/v2/catalog:
    get:
      operationId: getServiceCatalog
      summary: Oracle Database Get service catalog
      description: Returns the Open Service Broker catalog of available services.
      tags:
      - Open Service Broker
      responses:
        '200':
          description: Service catalog retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceCatalog'
  /openservicebroker/v2/service_instances/{instance_id}:
    put:
      operationId: provisionServiceInstance
      summary: Oracle Database Provision a service instance
      description: Provisions a new Open Service Broker service instance.
      tags:
      - Open Service Broker
      parameters:
      - name: instance_id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProvisionRequest'
      responses:
        '200':
          description: Service instance already exists
        '201':
          description: Service instance provisioned successfully
    delete:
      operationId: deprovisionServiceInstance
      summary: Oracle Database Deprovision a service instance
      description: Deprovisions an existing Open Service Broker service instance.
      tags:
      - Open Service Broker
      parameters:
      - name: instance_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Service instance deprovisioned successfully
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    Error:
      type: object
      properties:
        code:
          type: integer
        message:
          type: string
        type:
          type: string
    ProvisionRequest:
      type: object
      required:
      - service_id
      - plan_id
      properties:
        service_id:
          type: string
        plan_id:
          type: string
        parameters:
          type: object
    ServiceCatalog:
      type: object
      properties:
        services:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              description:
                type: string
              plans:
                type: array
                items:
                  type: object
                  properties:
                    id:
                      type: string
                    name:
                      type: string
                    description:
                      type: string
  responses:
    NotFound:
      description: The specified resource was not found
      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/