Universiti Sains Malaysia Export API

EPrints export plugins — one bibliographic serialization per format.

Operations 1

GET /cgi/export/eprint/{eprintid}/{format}/{filename} Export one record in a named bibliographic format #

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/usm-export-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

usm-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: USM Repository EPrints REST Export API
  version: 3.3.16
  x-generated: '2026-09-01'
  x-method: derived
  x-source: Hand-derived from live probes of https://eprints.usm.my/rest/ and https://eprints.usm.my/cgi/export/ on 2026-09-01. Every path, response media type and export format below was individually requested and its status code and Content-Type recorded. USM publishes no OpenAPI for this surface; this description is API Evangelist's, not the institution's.
  x-operator: institution
  description: Read interface to Repository@USM, the EPrints 3.3.16 institutional repository Universiti Sains Malaysia runs on its own host.
  contact:
    name: Repository@USM administrator
    email: eprints@usm.my
    url: https://eprints.usm.my/
servers:
- url: https://eprints.usm.my
  description: Repository@USM (production, verified 2026-09-01)
tags:
- name: Export
  description: EPrints export plugins — one bibliographic serialization per format.
paths:
  /cgi/export/eprint/{eprintid}/{format}/{filename}:
    get:
      tags:
      - Export
      operationId: exportEprint
      summary: Export one record in a named bibliographic format
      description: Seventeen formats answered 200 on 2026-09-01, each with its own Content-Type. JSON, RDFXML, METS, MODS, DIDL, ContextObject and Atom carry structured content-types; BibTeX, RIS, EndNote, Refer, DC, Simple, Text, COinS and RDFNT return text/plain. The filename segment is arbitrary and only names the download.
      parameters:
      - name: eprintid
        in: path
        required: true
        schema:
          type: integer
      - name: format
        in: path
        required: true
        schema:
          type: string
          enum:
          - JSON
          - XML
          - BibTeX
          - RDFXML
          - RDFNT
          - DC
          - EndNote
          - METS
          - MODS
          - Atom
          - RIS
          - ContextObject
          - Refer
          - Simple
          - Text
          - COinS
          - DIDL
      - name: filename
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The record serialized in the requested format.
          content:
            application/json:
              schema:
                $ref: ../json-schema/usm-eprint-record.json
            application/rdf+xml:
              schema:
                type: string
                contentMediaType: application/rdf+xml
            text/plain:
              schema:
                type: string