ePrints Soton REST Interface

Read-only REST interface over the ePrints Soton data model, exposing the repository's eprint, user and subject datasets. Unauthenticated. Individual records dereference by identifier with a format extension and return native EPrints XML (namespace http://eprints.org/ep2/data/2.0) including nested documents and files with their own stable identifiers. Verified 2026-08-30: the dataset index returned 200 (524 bytes) and eprint 498754 returned 200 text/xml (5106 bytes) carrying populated ORCID iDs and the DOI 10.5258/SOTON/WSI-WP013. Treat it as a repository export rather than a designed API — there is no pagination, versioning, rate-limit header or published contract, and the unfiltered listing at /rest/eprint/ streamed past 11 MB without completing at a 25-second timeout. Use OAI-PMH for bulk work. Same Anubis User-Agent gate as the OAI-PMH surface.

Operations 2

GET / List the datasets this repository exposes #
GET /eprint/{eprintid}.xml Retrieve one repository record as EPrints XML #

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/eprints-rest"
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-southampton-eprints-rest-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: ePrints Soton REST Interface
  version: '2.0'
  x-generated: '2026-08-30'
  x-method: derived
  x-source: >-
    Derived from live probes of https://eprints.soton.ac.uk/rest/ on 2026-08-30. The dataset index,
    the eprint dataset listing and a single-record retrieval were each exercised against the running
    service. A captured record is held in examples/eprints-rest-eprint-498754.xml. The University
    publishes no OpenAPI description of this interface; this document is API Evangelist's.
  x-operator: institution
  x-operator-evidence: >-
    Same host and same evidence as the OAI-PMH surface: eprints.soton.ac.uk resolves to
    152.78.118.18 in the University's own address space, and the platform is EPrints 3.3.15,
    software developed at the University of Southampton itself.
  description: >-
    The EPrints REST interface exposed by ePrints Soton, the University of Southampton's
    institutional research repository. It publishes the repository's internal data model directly:
    /rest/ enumerates the datasets (eprint, user, subject) and each dataset can be dereferenced by
    identifier with a format extension.

    This is a read surface with no authentication and no API key, and it returns the native EPrints
    XML data model (namespace http://eprints.org/ep2/data/2.0) rather than a REST-styled JSON
    resource. Consumers should treat it as a repository export rather than a designed public API:
    there is no pagination, no rate-limit header, no versioning and no published contract, and the
    unfiltered dataset listing at /rest/eprint/ returns an HTML index that exceeded 11 MB and had
    not completed within a 25-second timeout when probed. Retrieve individual records by identifier;
    for bulk work use the OAI-PMH surface, which is designed for it.

    The same Anubis bot challenge that fronts the OAI-PMH endpoint fronts this one, with the same
    User-Agent-keyed behaviour.
  contact:
    name: ePrints Soton
    email: eprints@soton.ac.uk
    url: https://eprints.soton.ac.uk/
servers:
  - url: https://eprints.soton.ac.uk/rest
    description: ePrints Soton REST base, University of Southampton
tags:
  - name: Datasets
    description: Enumeration of the repository's exposed datasets.
  - name: Eprints
    description: Individual repository records.
paths:
  /:
    get:
      operationId: listDatasets
      summary: List the datasets this repository exposes
      description: >-
        Returns an HTML index naming the available datasets. Verified 2026-08-30: 200,
        524 bytes, listing eprint, user and subject.
      tags: [ Datasets ]
      responses:
        '200':
          description: HTML index of datasets.
          content:
            text/html:
              schema:
                type: string
        '401':
          description: Anubis proof-of-work bot challenge, keyed off a browser-like User-Agent.
  /eprint/{eprintid}.xml:
    get:
      operationId: getEprintXml
      summary: Retrieve one repository record as EPrints XML
      description: >-
        Returns the native EPrints data model for a single record, including nested documents and
        files with their own stable identifiers. Verified 2026-08-30 against eprint 498754:
        200, text/xml, 5106 bytes.
      tags: [ Eprints ]
      parameters:
        - name: eprintid
          in: path
          required: true
          description: Numeric EPrints record identifier.
          schema:
            type: integer
            examples: [ 498754 ]
      responses:
        '200':
          description: An EPrints XML document.
          content:
            text/xml:
              schema:
                $ref: '#/components/schemas/Eprints'
        '404':
          description: No such record.
        '401':
          description: Anubis proof-of-work bot challenge, keyed off a browser-like User-Agent.
components:
  schemas:
    Eprints:
      type: object
      description: >-
        Root of the EPrints data model, namespace http://eprints.org/ep2/data/2.0. Field set below
        is what the live service returned, not the full EPrints schema.
      properties:
        eprint:
          $ref: '#/components/schemas/Eprint'
    Eprint:
      type: object
      properties:
        eprintid:
          type: integer
        rev_number:
          type: integer
        documents:
          type: array
          items:
            $ref: '#/components/schemas/Document'
    Document:
      type: object
      properties:
        docid:
          type: integer
        rev_number:
          type: integer
        files:
          type: array
          items:
            $ref: '#/components/schemas/File'
    File:
      type: object
      properties:
        fileid:
          type: integer