University of Pennsylvania Request API

The Request API from University of Pennsylvania — 1 operation(s) for request.

Operations 1

GET /request OAI-PMH 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/university-of-pennsylvania-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-pennsylvania-request-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ScholarlyCommons at Penn — OAI-PMH Request API
  version: '2.0'
  description: OAI-PMH 2.0 harvesting interface for ScholarlyCommons at Penn, the University of Pennsylvania's institutional research repository. The repository runs DSpace 7.6 on a University of Pennsylvania host (repository.upenn.edu) under the Handle prefix 20.500.14332, and the harvesting endpoint is operated by the institution. This contract was DERIVED by probing the live endpoint — Penn does not publish an OpenAPI for it. The OAI-PMH protocol itself is an OpenArchives standard, not Penn engineering; what is Penn's here is that the endpoint is operated on their own domain over their own records.
  contact:
    name: Penn Libraries
    url: https://www.library.upenn.edu/
  license:
    name: Open Archives Initiative Protocol for Metadata Harvesting 2.0
    url: http://www.openarchives.org/OAI/openarchivesprotocol.html
  x-operator: institution
  x-operator-entity: University of Pennsylvania (Penn Libraries)
  x-software: DSpace 7.6
  x-provenance:
    generated: '2026-08-19'
    method: derived
    source: https://repository.upenn.edu/server/oai/request?verb=Identify
    note: Derived from live probes of verb=Identify, verb=ListSets, verb=ListMetadataFormats and verb=ListRecords on 2026-08-19, each returning HTTP 200 with well-formed OAI-PMH XML.
servers:
- url: https://repository.upenn.edu/server/oai
  description: ScholarlyCommons at Penn OAI-PMH endpoint
tags:
- name: Request
paths:
  /request:
    get:
      summary: OAI-PMH request
      description: Single OAI-PMH 2.0 entry point. The `verb` parameter selects the operation; all responses are OAI-PMH XML, including protocol-level errors, which are returned with HTTP 200 and an <error> element rather than an HTTP error status.
      operationId: oaiRequest
      parameters:
      - name: verb
        in: query
        required: true
        description: OAI-PMH verb.
        schema:
          type: string
          enum:
          - Identify
          - ListMetadataFormats
          - ListSets
          - ListIdentifiers
          - ListRecords
          - GetRecord
      - name: metadataPrefix
        in: query
        required: false
        description: 'Metadata format. Formats advertised by this repository on 2026-08-19: oai_dc, qdc, uketd_dc, didl, mods, ore, mets, rdf, marc, xoai, dim, etdms.'
        schema:
          type: string
          enum:
          - oai_dc
          - qdc
          - uketd_dc
          - didl
          - mods
          - ore
          - mets
          - rdf
          - marc
          - xoai
          - dim
          - etdms
      - name: identifier
        in: query
        required: false
        description: OAI identifier, e.g. oai:repository.upenn.edu:20.500.14332/28879
        schema:
          type: string
      - name: set
        in: query
        required: false
        description: Set spec, e.g. com_20.500.14332_1 (1. Research at Penn)
        schema:
          type: string
      - name: from
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: until
        in: query
        required: false
        schema:
          type: string
          format: date-time
      - name: resumptionToken
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OAI-PMH XML response (success or protocol-level <error>).
          content:
            text/xml:
              schema:
                type: string
                description: OAI-PMH 2.0 XML document.
      tags:
      - Request