arXiv OAI-PMH API

OAI-PMH v2.0 verbs for metadata harvesting.

Operations 1

GET /oai Invoke An Oai-pmh Verb #

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

arxiv-oai-pmh-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: arXiv OAI PMH API
  description: 'Open Archives Initiative Protocol for Metadata Harvesting (OAI-PMH v2.0)

    endpoint for bulk-harvesting arXiv metadata. Recommended for large

    incremental syncs; metadata is refreshed roughly daily around 10:30pm ET

    Sunday through Thursday.


    Rate limit (shared with all arXiv legacy APIs): no more than one request

    every three seconds, single connection at a time. Honour resumption tokens

    when iterating large set lists.

    '
  version: '2.0'
  contact:
    name: arXiv API Support
    url: https://info.arxiv.org/help/oa/index.html
    email: help@arxiv.org
  license:
    name: Metadata CC0 1.0 (e-prints under individual copyright)
    url: https://info.arxiv.org/help/api/tou.html
  termsOfService: https://info.arxiv.org/help/api/tou.html
servers:
- url: https://oaipmh.arxiv.org
  description: Primary OAI-PMH host (March 2025+)
tags:
- name: OAI-PMH
  description: OAI-PMH v2.0 verbs for metadata harvesting.
paths:
  /oai:
    get:
      operationId: oaiVerb
      summary: Invoke An Oai-pmh Verb
      description: 'Single OAI-PMH endpoint dispatched by the `verb` parameter. Supports

        `Identify`, `ListSets`, `ListMetadataFormats`, `ListRecords`,

        `ListIdentifiers`, and `GetRecord`.

        '
      tags:
      - OAI-PMH
      parameters:
      - name: verb
        in: query
        required: true
        description: OAI-PMH verb to invoke.
        schema:
          type: string
          enum:
          - Identify
          - ListSets
          - ListMetadataFormats
          - ListRecords
          - ListIdentifiers
          - GetRecord
      - name: identifier
        in: query
        description: OAI identifier (required for `GetRecord`).
        schema:
          type: string
      - name: metadataPrefix
        in: query
        description: Metadata format prefix (required for `ListRecords`, `ListIdentifiers`, `GetRecord`).
        schema:
          type: string
          enum:
          - oai_dc
          - arXiv
          - arXivRaw
      - name: from
        in: query
        description: Lower bound (UTCdatetime) for selective harvesting.
        schema:
          type: string
          format: date
      - name: until
        in: query
        description: Upper bound (UTCdatetime) for selective harvesting.
        schema:
          type: string
          format: date
      - name: set
        in: query
        description: Set spec (e.g. `cs`, `cs:cs:AI`).
        schema:
          type: string
      - name: resumptionToken
        in: query
        description: Token returned by a previous list response to fetch the next batch.
        schema:
          type: string
      responses:
        '200':
          description: OAI-PMH XML response.
          content:
            text/xml:
              schema:
                type: string