eDiss Göttingen OAI-PMH Metadata Harvesting

OAI-PMH 2.0 harvesting interface for eDiss Göttingen, the university's electronic dissertations and theses server, operated by SUB Göttingen on the uni-goettingen.de domain. Verified live on 2026-08-30. Disseminates oai_dc plus the German national profiles xMetaDissPlus, epicur and picaxml. Note that the HTML interface of this host sits behind a proof-of-work bot challenge while the OAI endpoint itself does not.

Operations 1

GET /oai/request Issue an OAI-PMH 2.0 request against eDiss Göttingen #

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/ediss-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-ediss-oai-pmh-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: eDiss Göttingen OAI-PMH Metadata Harvesting Interface
  description: >-
    OAI-PMH 2.0 harvesting interface for eDiss Göttingen, the University of Göttingen's
    electronic dissertations and theses server, operated by SUB Göttingen on the university's own
    `uni-goettingen.de` domain. The live Identify response names the repository "eDiss Göttingen"
    with adminEmail ediss@sub.uni-goettingen.de and repositoryIdentifier ediss.uni-goettingen.de.

    Alongside oai_dc this endpoint disseminates the German national formats xMetaDissPlus, epicur
    and picaxml — the German long-term-archiving and PICA cataloguing profiles — which is a
    Göttingen/DNB integration fact rather than anything the repository software supplies by
    default.

    Every verb and metadata prefix below was confirmed against the live endpoint on 2026-08-30.
  version: '2.0'
  contact:
    name: eDiss, SUB Göttingen
    email: ediss@sub.uni-goettingen.de
    url: https://ediss.uni-goettingen.de/
  x-operator: institution
  x-provenance:
    generated: '2026-08-30'
    method: generated
    x-evidence-method: probed
    source: >-
      Live probes of https://ediss.uni-goettingen.de/oai/request (Identify, ListMetadataFormats,
      ListSets) on 2026-08-30. Written by API Evangelist from observed responses; the university
      publishes no OpenAPI of its own for this endpoint.
servers:
- url: https://ediss.uni-goettingen.de
  description: eDiss Göttingen — electronic dissertations and theses (production)
tags:
- name: OAI-PMH
  description: Open Archives Initiative Protocol for Metadata Harvesting, version 2.0.
paths:
  /oai/request:
    get:
      operationId: edissOaiRequest
      summary: Issue an OAI-PMH 2.0 request against eDiss Göttingen
      description: >-
        Single OAI-PMH entry point for the dissertation server. Confirmed verbs: Identify,
        ListMetadataFormats, ListSets. Confirmed metadataPrefix values: oai_dc, xMetaDissPlus,
        epicur, picaxml.
      tags:
      - OAI-PMH
      parameters:
      - name: verb
        in: query
        required: true
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: metadataPrefix
        in: query
        required: false
        description: 'Confirmed available: oai_dc, xMetaDissPlus, epicur, picaxml.'
        schema:
          type: string
          examples:
          - oai_dc
          - xMetaDissPlus
          - epicur
          - picaxml
      - name: identifier
        in: query
        required: false
        description: OAI identifier of a single record, required for GetRecord.
        schema:
          type: string
          examples:
          - 'oai:ediss.uni-goettingen.de:11858/1234'
      - name: set
        in: query
        required: false
        schema:
          type: string
      - name: from
        in: query
        required: false
        schema:
          type: string
      - name: until
        in: query
        required: false
        schema:
          type: string
      - name: resumptionToken
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: >-
            An OAI-PMH XML response. Protocol-level failures are returned with HTTP 200 inside an
            <error> element, per the OAI-PMH specification. Note that the HTML interface of this
            host sits behind a proof-of-work bot challenge while /oai/request itself does not.
          content:
            text/xml:
              schema:
                type: string
                description: OAI-PMH 2.0 XML document rooted at <OAI-PMH>.