SUB Göttingen IIIF Image and Presentation

IIIF Image API 2.0 (level 2) image service at images.sub.uni-goettingen.de and IIIF Presentation manifests routed through gdz.sub.uni-goettingen.de with canonical identifiers on manifests.sub.uni-goettingen.de. All three hosts resolve into the university's own address space. Verified live on 2026-08-30 against identifier gdz:PPN519929969:00000001 — info.json, a JPEG derivative and a full Presentation manifest all returned 200. The IIIF specifications belong to the IIIF community; the deployment, the identifier scheme and the level-2 profile are Göttingen's.

Operations 3

GET /iiif/image/{identifier}/info.json IIIF Image API image information request #
GET /iiif/image/{identifier}/{region}/{size}/{rotation}/{quality}.{format} IIIF Image API image request #
GET /iiif/presentation/{recordId}/manifest IIIF Presentation manifest for a digitised object #

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/sub-iiif"
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-gottingen-sub-iiif-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: SUB Göttingen IIIF Image and Presentation Interfaces
  description: >-
    IIIF Image API 2.0 (level 2) and IIIF Presentation API deployment operated by the Göttingen
    State and University Library (SUB Göttingen) for the Göttinger Digitalisierungszentrum (GDZ)
    and the university's digitised collections. Images are served from
    images.sub.uni-goettingen.de and manifests from manifests.sub.uni-goettingen.de, both on the
    university's own `sub.uni-goettingen.de` domain and both resolving into the university's
    address space.

    IIIF is a community specification, not a Göttingen one. What is Göttingen's is this
    deployment: the identifier scheme (`gdz:PPN<record>:<page>`), the manifest routing under
    gdz.sub.uni-goettingen.de/iiif/presentation/, and the level-2 image service profile actually
    advertised by the live info.json.

    Every path below was confirmed against the live services on 2026-08-30.
  version: 'image-2.0'
  contact:
    name: Göttinger Digitalisierungszentrum (GDZ), SUB Göttingen
    email: gdz@sub.uni-goettingen.de
    url: https://gdz.sub.uni-goettingen.de/
  x-operator: institution
  x-provenance:
    generated: '2026-08-30'
    method: generated
    x-evidence-method: probed
    source: >-
      Live probes on 2026-08-30 of
      https://gdz.sub.uni-goettingen.de/iiif/presentation/PPN519929969/manifest (200, IIIF
      Presentation manifest),
      https://images.sub.uni-goettingen.de/iiif/image/gdz:PPN519929969:00000001/info.json (200,
      IIIF Image API 2.0 level2 profile) and a full/96,/0/default.jpg derivative (200,
      image/jpeg). Written by API Evangelist from observed responses.
servers:
- url: https://images.sub.uni-goettingen.de
  description: SUB Göttingen IIIF Image API 2.0 image server
- url: https://gdz.sub.uni-goettingen.de
  description: GDZ IIIF Presentation manifest routing
tags:
- name: IIIF Image
  description: IIIF Image API 2.0, level 2 compliance as advertised by the live info.json profile.
- name: IIIF Presentation
  description: IIIF Presentation API manifests for digitised GDZ objects.
paths:
  /iiif/image/{identifier}/info.json:
    get:
      operationId: iiifImageInfo
      summary: IIIF Image API image information request
      tags:
      - IIIF Image
      description: >-
        Returns the image information document for a digitised page. The live response declares
        @context http://iiif.io/api/image/2/context.json and profile
        https://iiif.io/api/image/2/level2.json, with tile width/height 512 and scaleFactors
        1,2,4,8,16.
      parameters:
      - name: identifier
        in: path
        required: true
        description: 'IIIF image identifier, Göttingen scheme: gdz:PPN<record>:<zero-padded page>.'
        schema:
          type: string
          examples:
          - 'gdz:PPN519929969:00000001'
      responses:
        '200':
          description: IIIF Image API 2.0 information document.
          content:
            application/json:
              schema:
                type: object
                required: ['@context', '@id', width, height, profile]
                properties:
                  '@context':
                    type: string
                  '@id':
                    type: string
                  protocol:
                    type: string
                  width:
                    type: integer
                  height:
                    type: integer
                  profile:
                    type: string
                  sizes:
                    type: array
                    items:
                      type: object
                      properties:
                        width:
                          type: number
                        height:
                          type: number
                  tiles:
                    type: array
                    items:
                      type: object
                      properties:
                        width:
                          type: integer
                        height:
                          type: integer
                        scaleFactors:
                          type: array
                          items:
                            type: integer
  /iiif/image/{identifier}/{region}/{size}/{rotation}/{quality}.{format}:
    get:
      operationId: iiifImageRequest
      summary: IIIF Image API image request
      tags:
      - IIIF Image
      description: >-
        Standard IIIF Image API 2.0 image request. Confirmed live with
        full/96,/0/default.jpg returning image/jpeg.
      parameters:
      - name: identifier
        in: path
        required: true
        schema:
          type: string
      - name: region
        in: path
        required: true
        schema:
          type: string
          examples:
          - full
      - name: size
        in: path
        required: true
        schema:
          type: string
          examples:
          - '96,'
      - name: rotation
        in: path
        required: true
        schema:
          type: string
          examples:
          - '0'
      - name: quality
        in: path
        required: true
        schema:
          type: string
          examples:
          - default
      - name: format
        in: path
        required: true
        schema:
          type: string
          examples:
          - jpg
      responses:
        '200':
          description: The requested image derivative.
          content:
            image/jpeg: {}
  /iiif/presentation/{recordId}/manifest:
    servers:
    - url: https://gdz.sub.uni-goettingen.de
      description: GDZ IIIF Presentation manifest routing
    get:
      operationId: iiifPresentationManifest
      summary: IIIF Presentation manifest for a digitised object
      tags:
      - IIIF Presentation
      description: >-
        Returns the IIIF Presentation manifest for a GDZ record. The manifest's own @id resolves
        to https://manifests.sub.uni-goettingen.de/id/{recordId}, and its canvases reference
        image services on images.sub.uni-goettingen.de.
      parameters:
      - name: recordId
        in: path
        required: true
        description: GDZ record identifier (PPN).
        schema:
          type: string
          examples:
          - PPN519929969
      responses:
        '200':
          description: IIIF Presentation manifest.
          content:
            application/json:
              schema:
                type: object
                properties:
                  '@id':
                    type: string
                  '@type':
                    type: string
                  '@context':
                    type: string
                  label:
                    type: string