Pohang University of Science and Technology OAI PMH API

Open Archives Initiative Protocol for Metadata Harvesting, version 2.0.

Operations 1

GET /oai/request 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/postech-oai-pmh-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

postech-oai-pmh-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: POSTECH OASIS Repository OAI PMH API
  version: '2.0'
  summary: OAI-PMH 2.0 metadata harvesting interface for the POSTECH Library OASIS institutional repository.
  description: Machine-readable description of the OAI-PMH 2.0 harvesting endpoint operated by POSTECH Library at https://oasis.postech.ac.kr/oai/request, derived from live, credential-free probes on 2026-08-30 rather than from any document POSTECH publishes.
  contact:
    name: POSTECH Library (Tae-Joon Park Digital Library)
    url: https://library.postech.ac.kr/
  x-operator: institution
  x-operator-basis: Host oasis.postech.ac.kr resolves to 141.223.5.61, inside POSTECH's own network, and is under POSTECH's registrable domain postech.ac.kr. The OAI-PMH adminEmail is argonetdev@gmail.com, a Korean DSpace integrator address, which reflects who maintains the software, not who operates the service.
  x-provenance:
    generated: '2026-08-30'
    method: derived
    source: Live unauthenticated probes of https://oasis.postech.ac.kr/oai/request (verbs Identify, ListMetadataFormats, ListSets, ListRecords) on 2026-08-30, plus the OAI-PMH 2.0 protocol specification at https://www.openarchives.org/OAI/openarchivesprotocol.html.
  license:
    name: OAI-PMH 2.0 protocol (Open Archives Initiative)
    url: https://www.openarchives.org/OAI/openarchivesprotocol.html
servers:
- url: https://oasis.postech.ac.kr
  description: POSTECH Library OASIS institutional repository (DSpace), Pohang, South Korea.
tags:
- name: oai pmh
  description: Open Archives Initiative Protocol for Metadata Harvesting, version 2.0.
paths:
  /oai/request:
    get:
      tags:
      - oai pmh
      operationId: oaiRequest
      summary: Issue an OAI-PMH 2.0 request
      description: Single dispatch endpoint for all six OAI-PMH verbs. Every response is an XML OAI-PMH envelope; protocol-level failures are reported as an element inside a 200 response, not as an HTTP status. No credentials are accepted or required.
      parameters:
      - name: verb
        in: query
        required: true
        description: The OAI-PMH verb to invoke.
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: metadataPrefix
        in: query
        required: false
        description: Metadata format to return. Required for ListIdentifiers, ListRecords and GetRecord. Twelve prefixes were served on 2026-08-30.
        schema:
          type: string
          enum:
          - oai_dc
          - qdc
          - mods
          - mets
          - marc
          - didl
          - ore
          - rdf
          - dim
          - xoai
          - etdms
          - uketd_dc
      - name: identifier
        in: query
        required: false
        description: 'OAI identifier of a single record, required for GetRecord. Sample identifier form reported by Identify: oai:oasis.postech.ac.kr:2014.oak/1234.'
        schema:
          type: string
          examples:
          - oai:oasis.postech.ac.kr:2014.oak/503
      - name: set
        in: query
        required: false
        description: setSpec to restrict a selective harvest. 163 sets were listed on 2026-08-30.
        schema:
          type: string
          examples:
          - com_2014.oak_383
      - name: from
        in: query
        required: false
        description: Lower bound datestamp, granularity YYYY-MM-DDThh:mm:ssZ.
        schema:
          type: string
          format: date-time
      - name: until
        in: query
        required: false
        description: Upper bound datestamp, granularity YYYY-MM-DDThh:mm:ssZ.
        schema:
          type: string
          format: date-time
      - name: resumptionToken
        in: query
        required: false
        description: Flow-control token from a previous incomplete list response. Exclusive of all other arguments except verb. Observed on ListRecords with completeListSize 106805 and a page size of 100.
        schema:
          type: string
      responses:
        '200':
          description: An OAI-PMH XML envelope. Carries the verb payload on success, or an <error> element with an OAI-PMH error code on protocol failure.
          content:
            text/xml:
              schema:
                $ref: '#/components/schemas/OAIPMHEnvelope'
components:
  schemas:
    OAIPMHEnvelope:
      type: object
      description: Root OAI-PMH element in namespace http://www.openarchives.org/OAI/2.0/. Described structurally; the wire format is XML, not JSON.
      properties:
        responseDate:
          type: string
          format: date-time
        request:
          type: string
          description: Echo of the base URL and the arguments accepted.
        error:
          type: object
          properties:
            code:
              type: string
              enum:
              - badArgument
              - badResumptionToken
              - badVerb
              - cannotDisseminateFormat
              - idDoesNotExist
              - noRecordsMatch
              - noMetadataFormats
              - noSetHierarchy