University of Antwerp IRUA OAI PMH Metadata Interface API

The IRUA OAI PMH Metadata Interface API from University of Antwerp — 1 operation(s) for irua oai pmh metadata interface.

Operations 1

GET / Issue an OAI-PMH 2.0 request #

Documentation

Specifications

Other Resources

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-antwerp-irua-oai-pmh-metadata-interface-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-antwerp-irua-oai-pmh-metadata-interface-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: IRUA OAI-PMH Metadata Interface IRUA OAI PMH Metadata…
  version: '2.0'
  summary: Open Archives Initiative Protocol for Metadata Harvesting (OAI-PMH 2.0) interface for the Institutional Repository University of Antwerp (IRUA).
  description: Institution-operated OAI-PMH 2.0 harvesting interface for the Institutional Repository University of Antwerp (IRUA), served from the university's own host repository.uantwerpen.be, which resolves to 143.169.239.17 inside inetnum 143.169.0.0-143.169.255.255, netname UA, org "Universiteit Antwerpen", Prinsstraat 13, 2000 Antwerpen (RIPE, maintained by BELNET-MNT).
  contact:
    name: IRUA repository helpdesk
    email: helpdesk@mail.wander.be
  x-operator: institution
  x-operator-basis: 'Host repository.uantwerpen.be is under the institution''s own registrable domain and resolves into the University of Antwerp''s own RIPE allocation (143.169.0.0/16, netname UA, org "Universiteit Antwerpen"). Not a vendor tenancy: the Brocade/Wander platform serving it is itself built and hosted by the UAntwerpen Library & Archive on the same address.'
  x-provenance:
    generated: '2026-09-01'
    method: derived
    source: Live probes of https://repository.uantwerpen.be/oai/abua/ on 2026-09-01 — verb=Identify (HTTP 200), verb=ListMetadataFormats (HTTP 200), verb=ListSets (HTTP 200), verb=ListIdentifiers&metadataPrefix=oai_dc&set=set:irua:openaccess (HTTP 200), verb=ListRecords&metadataPrefix=oai_dc&set=set:irua:openaire (HTTP 200, 2,826,135 bytes), verb=Bogus (badVerb), verb=GetRecord with no identifier (badArgument), and verb=GetRecord&identifier=oai:bogus (idDoesNotExist).
servers:
- url: https://repository.uantwerpen.be/oai/abua
  description: Institutional Repository University of Antwerp (IRUA) OAI-PMH base URL
tags:
- name: IRUA OAI PMH Metadata Interface
paths:
  /:
    get:
      operationId: oaiRequest
      summary: Issue an OAI-PMH 2.0 request
      description: Single OAI-PMH entry point. The `verb` parameter selects the operation; the remaining parameters are conditional on the verb, per OAI-PMH 2.0. All responses are XML.
      parameters:
      - name: verb
        in: query
        required: true
        description: The OAI-PMH verb. All six were observed responding on this endpoint.
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
        examples:
          identify:
            value: Identify
      - name: metadataPrefix
        in: query
        required: false
        description: Metadata format to return. Required for ListIdentifiers, ListRecords and GetRecord. The six prefixes below are the ones this repository advertises via ListMetadataFormats.
        schema:
          type: string
          enum:
          - oai_dc
          - marc21
          - catxml
          - vabbmods
          - fwomods
          - cerif
      - name: set
        in: query
        required: false
        description: Selective-harvesting set. Four are advertised via ListSets; see scopes/university-of-antwerp-irua-oai-sets.yml.
        schema:
          type: string
      - name: identifier
        in: query
        required: false
        description: Record identifier, required for GetRecord. Observed identifier form is `c:irua:<numeric>`, e.g. c:irua:100005.
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Lower bound datestamp for selective harvesting. Granularity YYYY-MM-DD.
        schema:
          type: string
          format: date
      - name: until
        in: query
        required: false
        description: Upper bound datestamp for selective harvesting. Granularity YYYY-MM-DD.
        schema:
          type: string
          format: date
      - name: resumptionToken
        in: query
        required: false
        description: Continuation token from a previous incomplete list response.
        schema:
          type: string
      responses:
        '200':
          description: An OAI-PMH XML response. Protocol-level errors are ALSO returned with HTTP 200 and carry an <error code="..."> element — see errors/university-of-antwerp-irua-oai-errors.yml.
          content:
            text/xml:
              schema:
                type: string
                contentMediaType: text/xml
                description: OAI-PMH 2.0 response document, validating against http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd as declared in the xsi:schemaLocation of every observed response.
      tags:
      - IRUA OAI PMH Metadata Interface