Apache Tika Meta API

The Meta API from Apache Tika — 3 operation(s) for meta.

OpenAPI Specification

apache-tika-meta-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Apache Tika Server REST Apache Tika Server REST API Meta API
  version: '1.0'
  description: Minimal OpenAPI for the Apache Tika Server REST API providing content and metadata extraction, language detection, translation, recursive metadata, archive unpacking, and server status endpoints.
servers:
- url: http://localhost:9998
  description: Tika Server
tags:
- name: Meta
paths:
  /meta:
    get:
      summary: Metadata identity
      responses:
        '200':
          description: OK
      tags:
      - Meta
    put:
      summary: Extract document metadata
      requestBody:
        content:
          application/octet-stream:
            schema:
              type: string
              format: binary
      responses:
        '200':
          description: OK
      tags:
      - Meta
  /meta/{key}:
    get:
      summary: Get a metadata key (identity)
      parameters:
      - name: key
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
      tags:
      - Meta
    put:
      summary: Extract specific metadata key
      parameters:
      - name: key
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/octet-stream:
            schema:
              type: string
              format: binary
      responses:
        '200':
          description: OK
      tags:
      - Meta
  /meta/form:
    post:
      summary: Extract metadata via multipart form upload
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
      responses:
        '200':
          description: OK
      tags:
      - Meta
x-generated-from: https://cwiki.apache.org/confluence/display/TIKA/TikaServer
x-generated-by: claude-crawl-2026-05-08