GDZ OAI-PMH Metadata Harvesting

OAI-PMH 2.0 harvesting interface for the Göttinger Digitalisierungszentrum, operated by SUB Göttingen on the university's own domain. Verified live on 2026-08-30: Identify names the repository "GDZ - OAI Frontend" with adminEmail gdz@sub.uni-goettingen.de, earliestDatestamp 1998-03-01, and disseminates oai_dc and METS/MODS. Sets are GDZ collections such as dc_thaer-bibliothek and dc_blumenbachiana. No key, no registration, no observed rate limit.

Operations 1

GET /oai2/ Issue an OAI-PMH 2.0 request #

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/gdz-oai-pmh"
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

university-of-gottingen-gdz-oai-pmh-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: GDZ OAI-PMH Metadata Harvesting Interface
  description: >-
    OAI-PMH 2.0 harvesting interface for the Göttinger Digitalisierungszentrum (GDZ), the
    digitisation centre of the Göttingen State and University Library (SUB Göttingen), an
    institution of the University of Göttingen. The endpoint is operated by SUB Göttingen on the
    university's own `sub.uni-goettingen.de` domain; the repository identifies itself as
    "GDZ - OAI Frontend" with adminEmail gdz@sub.uni-goettingen.de. OAI-PMH itself is an Open
    Archives Initiative protocol, not a Göttingen specification — what is Göttingen's is this
    deployment, its set structure and its metadata formats.

    Every path and parameter in this document was confirmed against the live endpoint on
    2026-08-30; no operation is described here that was not called and observed returning
    OAI-PMH XML.
  version: '2.0'
  contact:
    name: Göttinger Digitalisierungszentrum (GDZ), SUB Göttingen
    email: gdz@sub.uni-goettingen.de
    url: https://gdz.sub.uni-goettingen.de/
  x-operator: institution
  x-provenance:
    generated: '2026-08-30'
    method: generated
    x-evidence-method: probed
    source: >-
      Live probes of https://gdz.sub.uni-goettingen.de/oai2/ (Identify, ListMetadataFormats,
      ListSets, ListIdentifiers, GetRecord, ListRecords) on 2026-08-30. Written by API Evangelist
      from observed responses; SUB Göttingen publishes no OpenAPI of its own for this endpoint.
servers:
- url: https://gdz.sub.uni-goettingen.de
  description: Göttinger Digitalisierungszentrum, SUB Göttingen (production)
tags:
- name: OAI-PMH
  description: Open Archives Initiative Protocol for Metadata Harvesting, version 2.0.
paths:
  /oai2/:
    get:
      operationId: oaiRequest
      summary: Issue an OAI-PMH 2.0 request
      description: >-
        Single OAI-PMH entry point. The `verb` parameter selects the operation. Confirmed verbs:
        Identify, ListMetadataFormats, ListSets, ListIdentifiers, ListRecords, GetRecord.
        Confirmed metadataPrefix values: `oai_dc` and `mets` (METS/MODS).
      tags:
      - OAI-PMH
      parameters:
      - name: verb
        in: query
        required: true
        description: The OAI-PMH verb to execute.
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: metadataPrefix
        in: query
        required: false
        description: >-
          Metadata format for ListIdentifiers, ListRecords and GetRecord. Confirmed available:
          oai_dc, mets.
        schema:
          type: string
          examples:
          - oai_dc
          - mets
      - name: identifier
        in: query
        required: false
        description: OAI identifier of a single record, required for GetRecord.
        schema:
          type: string
          examples:
          - 'oai:gdz.sub.uni-goettingen.de:PPN519929969'
      - name: set
        in: query
        required: false
        description: >-
          Restrict a listing to one set. Sets are GDZ collections, e.g. dc_thaer-bibliothek,
          dc_nordamericana, dc_blumenbachiana, dc_digiwunschbuch.
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Lower bound of the selective-harvesting datestamp window (YYYY-MM-DDThh:mm:ssZ).
        schema:
          type: string
      - name: until
        in: query
        required: false
        description: Upper bound of the selective-harvesting datestamp window (YYYY-MM-DDThh:mm:ssZ).
        schema:
          type: string
      - name: resumptionToken
        in: query
        required: false
        description: Flow-control token returned by a previous incomplete list response.
        schema:
          type: string
      responses:
        '200':
          description: >-
            An OAI-PMH XML response. Protocol-level failures (badVerb, badArgument,
            idDoesNotExist, cannotDisseminateFormat, noRecordsMatch) are also returned with HTTP
            200 inside an <error> element, per the OAI-PMH specification.
          content:
            text/xml:
              schema:
                type: string
                description: OAI-PMH 2.0 XML document rooted at <OAI-PMH>.