WIReDSpace OAI-PMH Interface

OAI-PMH 2.0 metadata harvesting endpoint for WIReDSpace. Single-endpoint, verb-driven, answering anonymously, advertising thirteen metadata prefixes (oai_dc, qdc, dim, mets, mods, ore, didl, rdf, marc, etdms, rioxx, uketd_dc, xoai) and community-scoped sets keyed to the 10539 Handle prefix. This is the most conformant standards surface Wits operates.

Operations 1

GET /request OAI-PMH request endpoint #

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/university-of-the-witwatersrand-request-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

university-of-the-witwatersrand-request-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WIReDSpace OAI-PMH Interface Request API
  description: 'Open Archives Initiative Protocol for Metadata Harvesting (OAI-PMH) version 2.0 interface for WIReDSpace, the University of the Witwatersrand institutional repository. The protocol is a single-endpoint, verb-driven HTTP API returning XML. Verified live: the Identify response names the repository "WIReDSpace", protocolVersion 2.0, granularity YYYY-MM-DDThh:mm:ssZ, and deletedRecord policy "transient". Responses are XML conforming to the OAI-PMH schema, not JSON; this specification documents the request surface only.'
  version: '2.0'
  contact:
    name: Wits Open Scholarship, Library
    email: openscholarship.library@wits.ac.za
    url: https://wiredspace.wits.ac.za/
  license:
    name: OAI-PMH Protocol
    url: http://www.openarchives.org/OAI/openarchivesprotocol.html
servers:
- url: https://wiredspace.wits.ac.za/server/oai
  description: WIReDSpace OAI-PMH production endpoint
tags:
- name: Request
paths:
  /request:
    get:
      summary: OAI-PMH request endpoint
      description: Single OAI-PMH entry point. The `verb` parameter selects the operation. Supported verbs are Identify, ListMetadataFormats, ListSets, ListIdentifiers, ListRecords, and GetRecord. Selective harvesting parameters (from, until, set, metadataPrefix, identifier, resumptionToken) apply per verb as defined by the OAI-PMH 2.0 protocol.
      operationId: oaiRequest
      parameters:
      - name: verb
        in: query
        required: true
        description: The OAI-PMH verb (operation) to perform.
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: identifier
        in: query
        required: false
        description: OAI identifier of a record (required for GetRecord; optional for ListMetadataFormats).
        schema:
          type: string
          example: oai:wiredspace.wits.ac.za:10539/38213
      - name: metadataPrefix
        in: query
        required: false
        description: Metadata format prefix (e.g. oai_dc). Required for GetRecord, ListRecords, ListIdentifiers.
        schema:
          type: string
          example: oai_dc
      - name: from
        in: query
        required: false
        description: Lower bound for selective harvesting by datestamp (UTC).
        schema:
          type: string
          example: '2025-01-01T00:00:00Z'
      - name: until
        in: query
        required: false
        description: Upper bound for selective harvesting by datestamp (UTC).
        schema:
          type: string
          example: '2025-12-31T23:59:59Z'
      - name: set
        in: query
        required: false
        description: Set spec for selective harvesting by set membership.
        schema:
          type: string
      - name: resumptionToken
        in: query
        required: false
        description: Flow-control token returned in a previous incomplete list response.
        schema:
          type: string
      responses:
        '200':
          description: An OAI-PMH 2.0 XML response document. The root element is OAI-PMH, containing responseDate, request, and either a verb-specific payload element or an error element.
          content:
            text/xml:
              schema:
                type: string
                description: OAI-PMH XML response document.
      tags:
      - Request
externalDocs:
  description: OAI-PMH 2.0 specification
  url: http://www.openarchives.org/OAI/2.0/openarchivesprotocol.htm