Apache POI Conversion API

The Conversion API from Apache POI — 1 operation(s) for conversion.

Operations 1

POST /convert Apache POI Convert Document #

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/apache-poi-conversion-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

apache-poi-conversion-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache POI Conversion API
  description: Apache POI provides Java APIs for reading and writing Microsoft Office formats including Excel (HSSF/XSSF), Word (HWPF/XWPF), PowerPoint (HSLF/XSLF), Visio, and Outlook. This OpenAPI represents the logical REST surface of a POI-based document processing service.
  version: 5.2.0
  contact:
    name: Apache POI
    url: https://poi.apache.org/
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0
servers:
- url: https://poi.example.com/api/v1
  description: Apache POI Document Service
tags:
- name: Conversion
paths:
  /convert:
    post:
      operationId: convertDocument
      summary: Apache POI Convert Document
      description: Convert a document between Office formats (e.g. XLS to XLSX, DOC to DOCX).
      tags:
      - Conversion
      x-microcks-operation:
        dispatcher: RANDOM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ConversionRequest'
      responses:
        '200':
          description: Conversion result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConversionResult'
components:
  schemas:
    ConversionRequest:
      type: object
      description: Document conversion request
      required:
      - sourceId
      - sourceType
      - targetFormat
      properties:
        sourceId:
          type: string
          description: Source document identifier
        sourceType:
          type: string
          enum:
          - workbook
          - document
          - presentation
          description: Type of the source document
        targetFormat:
          type: string
          description: Target format (XLSX, DOCX, PPTX, PDF)
    ConversionResult:
      type: object
      description: Document conversion result
      properties:
        id:
          type: string
          description: Converted document identifier
        format:
          type: string
          description: Output format
        url:
          type: string
          description: Download URL for the converted document
        size:
          type: integer
          description: File size in bytes