PHAIDRA misc API (University of Vienna)

The misc API from University of Vienna — 7 operation(s) for misc.

Operations 8

GET /state Test api state
GET /utils/get_all_pids Get all pids
GET /termsofuse Get terms of use
POST /termsofuse/agree/{version} Agree to terms of use
POST /settings Save user's settings.
GET /settings Get user's settings
GET /streaming/{pid}/key Get streaming key
GET /termsofuse/getagreed Checks if the current user agreed to the terms of use.

Documentation

Specifications

Schemas & Data

Other Resources

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-vienna-misc-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-vienna-misc-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: PHAIDRA datastream Misc API
  version: '3.0'
  description: Documentation of the PHAIDRA API.
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  x-provenance:
    generated: '2026-08-30'
    method: searched
    source: >-
      PHAIDRA API v3.0, published Apache 2.0 by the PHAIDRA project (github.com/phaidra/phaidra-api, public/docs/openapi.json), the platform the University of Vienna authors and hosts. Pristine copy at
      openapi/_original/university-of-vienna-phaidra-api.yaml.
    x-operator: institution
    note: >-
      Split from the source contract by refine-openapis; servers[] re-based to the live production host on 2026-08-30 (see servers[].description).
servers:
- url: https://phaidra.univie.ac.at/api/
  description: University of Vienna PHAIDRA (current production base, re3data r3d100010472, verified 2026-08-30)
- description: RETIRED — returns HTTP 200 with a zero-length body on every path (soft-200), verified 2026-08-30
  url: https://services.phaidra.univie.ac.at/api/
- description: PHAIDRA Sandbox — connection timed out on probe 2026-08-30
  url: https://sandbox.phaidra.org/api/
tags:
- name: misc
  description: ''
paths:
  /state:
    get:
      description: Returns "remote_address". This method is used for monitoring.
      summary: Test api state
      tags:
      - misc
      responses:
        '200':
          description: The API is running!
          content:
            application/json:
              schema: {}
  /utils/get_all_pids:
    get:
      summary: Get all pids
      tags:
      - misc
      responses:
        '200':
          description: pids
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: number
                  pids:
                    type: array
                    items:
                      type: string
  /termsofuse:
    get:
      summary: Get terms of use
      tags:
      - misc
      responses:
        '200':
          description: Terms of use
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: number
                  added:
                    type: string
                  terms:
                    type: string
                  version:
                    type: string
  /termsofuse/agree/{version}:
    post:
      summary: Agree to terms of use
      description: Record the user agreement to a particular version of the terms of use.
      tags:
      - misc
      security:
      - basicAuth: []
      parameters:
      - in: path
        name: version
        schema:
          type: number
          required: true
        description: version of the terms of use
      responses:
        '200':
          description: Terms of use
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: number
  /settings:
    post:
      summary: Save user's settings.
      description: Currently only used to set default metadata template in some external UIs.
      tags:
      - misc
      security:
      - basicAuth: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: string
                  settings:
                    type: object
    get:
      summary: Get user's settings
      description: Currently only used to set default metadata template in some external UIs.
      tags:
      - misc
      security:
      - basicAuth: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: string
                  settings:
                    type: object
  /streaming/{pid}/key:
    get:
      summary: Get streaming key
      description: The streaming key can be used when building your own video player. If you want the full video player, use /object/{pid}/preview instead.
      tags:
      - misc
      security:
      - basicAuth: []
      parameters:
      - in: path
        name: pid
        schema:
          type: string
          required: false
        description: pid - object id
      responses:
        '200':
          description: Streaming key.
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: number
        '503':
          description: Service Unavailable
          content:
            application/json:
              schema:
                type: object
                properties:
                  alerts:
                    type: array
                    items:
                      type: object
                      properties:
                        msg:
                          type: string
                        type:
                          type: string
                  status:
                    type: number
  /termsofuse/getagreed:
    get:
      summary: Checks if the current user agreed to the terms of use.
      tags:
      - misc
      security:
      - basicAuth: []
      responses:
        '200':
          description: object info
          content:
            application/json:
              schema: {}
components:
  securitySchemes:
    tokenAuth:
      type: apiKey
      in: header
      name: X-XSRF-TOKEN
    basicAuth:
      type: http
      scheme: basic