University of Western Australia Oai Pmh API

OAI-PMH 2.0 verbs exposed by the UWA research repository.

Operations 1

GET /oai 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/uwa-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

uwa-oai-pmh-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: UWA Research Repository Oai Pmh API
  version: '2.0'
  summary: Open Archives Initiative Protocol for Metadata Harvesting (OAI-PMH) 2.0 endpoint operated by the University of Western Australia over its research repository.
  description: The University of Western Australia operates a public, unauthenticated OAI-PMH 2.0 harvesting endpoint at https://api.research-repository.uwa.edu.au/ws/oai.
  contact:
    name: UWA Research Repository support
    email: help-repository@uwa.edu.au
    url: https://research-repository.uwa.edu.au/
  license:
    name: Open Archives Initiative Protocol for Metadata Harvesting 2.0
    url: http://www.openarchives.org/OAI/openarchivesprotocol.html
servers:
- url: https://api.research-repository.uwa.edu.au/ws
  description: UWA research repository harvesting host (probed 2026-08-30)
tags:
- name: oai pmh
  description: OAI-PMH 2.0 verbs exposed by the UWA research repository.
paths:
  /oai:
    get:
      tags:
      - oai pmh
      summary: OAI-PMH 2.0 request
      operationId: oaiRequest
      description: Single OAI-PMH entry point. The `verb` parameter selects the operation. All six OAI-PMH 2.0 verbs were probed against this endpoint on 2026-08-30 and each returned HTTP 200 with a well-formed OAI-PMH response envelope.
      security: []
      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. The endpoint's ListMetadataFormats response advertises exactly these five prefixes.
        schema:
          type: string
          enum:
          - oai_dc
          - xmetadiss
          - mods
          - nl_didl
          - qdc
      - name: set
        in: query
        required: false
        description: Set to restrict the harvest to. ListSets advertises person, publication and publication-by-year sets, e.g. `persons:all`, `publications:all`, `publications:withFiles`.
        schema:
          type: string
        examples:
          persons:
            value: persons:all
          publications:
            value: publications:all
          publicationsWithFiles:
            value: publications:withFiles
      - name: identifier
        in: query
        required: false
        description: OAI identifier of a single record. Required for GetRecord. Identifiers are of the form `oai:pure.atira.dk:persons/<uuid>` or `oai:pure.atira.dk:publications/<uuid>`.
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Lower bound on the record datestamp, YYYY-MM-DDThh:mm:ssZ granularity.
        schema:
          type: string
          format: date-time
      - name: until
        in: query
        required: false
        description: Upper bound on the record datestamp, YYYY-MM-DDThh:mm:ssZ granularity.
        schema:
          type: string
          format: date-time
      - name: resumptionToken
        in: query
        required: false
        description: Continuation token returned by an incomplete list response.
        schema:
          type: string
      responses:
        '200':
          description: OAI-PMH response envelope. Protocol-level failures are also returned with status 200 and carry an <error> element with an OAI-PMH error code.
          content:
            text/xml:
              schema:
                type: string
                description: OAI-PMH 2.0 XML document rooted at <OAI-PMH>.
x-generated: '2026-08-30'
x-method: probed
x-source: Hand-authored from live probes of https://api.research-repository.uwa.edu.au/ws/oai on 2026-08-30. Every verb below was requested and returned HTTP 200 with a well-formed OAI-PMH 2.0 response. The endpoint itself publishes no machine-readable description; this document describes the OAI-PMH 2.0 protocol AS DEPLOYED at UWA, including the set list and metadata prefixes the endpoint actually advertises. It is API Evangelist's description of a UWA-operated endpoint, not a contract UWA publishes.
x-operator: institution