Université libre de Bruxelles OAI PMH API

The six OAI-PMH 2.0 protocol verbs.

Operations 1

GET /OAI/Server Issue an OAI-PMH 2.0 request #

Documentation

Specifications

Schemas & Data

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/ulb-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

ulb-oai-pmh-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DI-fusion Harvesting Endpoint OAI PMH API
  version: '2.0'
  summary: OAI-PMH 2.0 metadata harvesting endpoint for DI-fusion, the Université libre de Bruxelles institutional research repository.
  description: 'ULB''s DI-fusion repository publishes an OAI-PMH 2.0 endpoint for third-party metadata

    harvesting.'
  contact:
    name: DI-fusion, Bibliothèques de l'ULB
    email: di-fusion@ulb.be
    url: https://bib.ulb.be/en/find-documents/di-fusion
  termsOfService: https://bib.ulb.be/en/find-documents/di-fusion/terms-of-use
servers:
- url: https://difusion.ulb.ac.be/vufind
  description: DI-fusion OAI-PMH provider, operated by the Université libre de Bruxelles
tags:
- name: oai pmh
  description: The six OAI-PMH 2.0 protocol verbs.
paths:
  /OAI/Server:
    get:
      tags:
      - oai pmh
      operationId: oaiPmhRequest
      summary: Issue an OAI-PMH 2.0 request
      description: 'Single OAI-PMH entry point. The verb is selected with the `verb` query parameter; the

        remaining parameters are conditional on it, per the OAI-PMH 2.0 specification.'
      parameters:
      - name: verb
        in: query
        required: true
        description: 'The OAI-PMH verb. `Identify` and `ListMetadataFormats` are answered (with HTTP 500 and

          trailing HTML); the four remaining verbs reject a valid `metadataPrefix`.

          '
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: metadataPrefix
        in: query
        required: false
        description: 'Metadata format to return. The endpoint advertises `oai_dc` and only `oai_dc`, but

          rejects it with `badArgument: Missing Metadata Prefix` on every record-bearing verb.

          '
        schema:
          type: string
          enum:
          - oai_dc
      - name: identifier
        in: query
        required: false
        description: OAI identifier of a single record, e.g. ULB-DIPOT:oai:dipot.ulb.ac.be:2013/151029. Required for GetRecord.
        schema:
          type: string
      - name: from
        in: query
        required: false
        description: Lower bound of the selective-harvesting datestamp range, granularity YYYY-MM-DDThh:mm:ssZ.
        schema:
          type: string
      - name: until
        in: query
        required: false
        description: Upper bound of the selective-harvesting datestamp range.
        schema:
          type: string
      - name: set
        in: query
        required: false
        description: Set to restrict the harvest to. No set hierarchy could be retrieved.
        schema:
          type: string
      - name: resumptionToken
        in: query
        required: false
        description: Flow-control token returned by an incomplete list response.
        schema:
          type: string
      responses:
        '200':
          description: 'OAI-PMH XML response. In practice, for ListRecords, ListIdentifiers, GetRecord and

            ListSets, this is an `<error code="badArgument">` document rather than a payload.

            '
          content:
            text/xml:
              schema:
                $ref: '#/components/schemas/OaiPmhResponse'
        '500':
          description: 'Returned for `Identify` and `ListMetadataFormats`. The body is a well-formed OAI-PMH

            document followed by the literal text `Unknown Action` and a full HTML page. Clients

            that check the status code will discard a valid response; clients that parse to

            `</OAI-PMH>` will succeed.

            '
          content:
            text/xml:
              schema:
                $ref: '#/components/schemas/OaiPmhResponse'
components:
  schemas:
    OaiError:
      type: object
      properties:
        code:
          type: string
          enum:
          - badArgument
          - badResumptionToken
          - badVerb
          - cannotDisseminateFormat
          - idDoesNotExist
          - noRecordsMatch
          - noMetadataFormats
          - noSetHierarchy
        message:
          type: string
          example: Missing Metadata Prefix
    Identify:
      type: object
      properties:
        repositoryName:
          type: string
          description: Empty on this deployment.
        baseURL:
          type: string
          format: uri
          example: https://difusion.ulb.ac.be/vufind/OAI/Server
        protocolVersion:
          type: string
          example: '2.0'
        adminEmail:
          type: string
          format: email
          example: di-fusion@ulb.be
        earliestDatestamp:
          type: string
          example: '2008-10-01T00:00:00Z'
        deletedRecord:
          type: string
          enum:
          - 'no'
          - persistent
          - transient
        granularity:
          type: string
          example: YYYY-MM-DDThh:mm:ssZ
    OaiPmhResponse:
      type: object
      title: OAI-PMH
      description: Root of an OAI-PMH 2.0 response, namespace http://www.openarchives.org/OAI/2.0/.
      properties:
        responseDate:
          type: string
          format: date-time
        request:
          type: string
          description: Echo of the request base URL. On this deployment it is the stale VuFind default, http://digital.library.villanova.edu/OAIServer.php, not ULB's own base URL.
        error:
          $ref: '#/components/schemas/OaiError'
        Identify:
          $ref: '#/components/schemas/Identify'
        ListMetadataFormats:
          type: object
          properties:
            metadataFormat:
              type: array
              items:
                type: object
                properties:
                  metadataPrefix:
                    type: string
                    example: oai_dc
                  schema:
                    type: string
                    format: uri
                  metadataNamespace:
                    type: string
                    format: uri
externalDocs:
  description: The Open Archives Initiative Protocol for Metadata Harvesting, version 2.0
  url: http://www.openarchives.org/OAI/openarchivesprotocol.html
x-generated: '2026-08-30'
x-method: derived
x-source: Derived from the OAI-PMH 2.0 specification (http://www.openarchives.org/OAI/openarchivesprotocol.html) and from live probes of https://difusion.ulb.ac.be/vufind/OAI/Server on 2026-08-30 covering the verbs Identify, ListMetadataFormats, ListSets, ListIdentifiers, ListRecords and GetRecord. ULB publishes no OpenAPI of its own; this description is API Evangelist's, not the institution's.
x-operator: institution