Apache POI Word API

The Word API from Apache POI — 2 operation(s) for word.

Operations 2

POST /documents Apache POI Create Document #
GET /documents/{documentId} Apache POI Get 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-word-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-word-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Apache POI Conversion Word 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: Word
paths:
  /documents:
    post:
      operationId: createDocument
      summary: Apache POI Create Document
      description: Create a new Word document (DOC or DOCX format).
      tags:
      - Word
      x-microcks-operation:
        dispatcher: RANDOM
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DocumentRequest'
      responses:
        '201':
          description: Document created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Document'
  /documents/{documentId}:
    get:
      operationId: getDocument
      summary: Apache POI Get Document
      description: Retrieve a Word document including paragraphs and text content.
      tags:
      - Word
      x-microcks-operation:
        dispatcher: URI_PARTS
        dispatcherRules: documentId
      parameters:
      - name: documentId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Document content
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Document'
components:
  schemas:
    Document:
      type: object
      description: Word document
      properties:
        id:
          type: string
          description: Document identifier
        name:
          type: string
          description: Document filename
        format:
          type: string
          enum:
          - DOC
          - DOCX
          description: Document format
        paragraphs:
          type: array
          items:
            $ref: '#/components/schemas/Paragraph'
        pageCount:
          type: integer
          description: Estimated page count
    DocumentRequest:
      type: object
      description: Request to create a Word document
      required:
      - name
      - format
      properties:
        name:
          type: string
          description: Document filename
        format:
          type: string
          enum:
          - DOC
          - DOCX
          description: Document format
        content:
          type: string
          description: Initial text content
    Paragraph:
      type: object
      description: Paragraph in a Word document
      properties:
        index:
          type: integer
          description: Paragraph index
        text:
          type: string
          description: Paragraph text content
        style:
          type: string
          description: Paragraph style name