University of Gothenburg General API

The General API from University of Gothenburg — 2 operation(s) for general.

Operations 2

GET /status Status #
GET /ping Ping backend #

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-gothenburg-general-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-gothenburg-general-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Sparv General API
  description: 'Sparv is Språkbanken’s annotation tool and contains a corpus import pipeline

    and a web service including a web interface.

    It can be used to annotate shorter texts using the same tools as are applied

    in the annotation of the corpora in Korp and the texts in

    Strix.


    You can read more about Sparv on Språkbanken''s web page.'
  x-logo:
    url: https://ws.spraakbanken.gu.se/ws/sparv/v3/static/sparv_frame.png
  contact:
    name: Språkbanken
    url: https://spraakbanken.gu.se/
    email: sb-info@svenska.gu.se
  license:
    name: MIT
    url: https://opensource.org/licenses/MIT
  version: '3.0'
servers:
- url: https://ws.spraakbanken.gu.se/ws/sparv/v3
  description: Production server
- url: https://ws.spraakbanken.gu.se/ws/sparvlabb/v3
  description: Lab version
tags:
- name: General
paths:
  /status:
    get:
      tags:
      - General
      summary: Status
      description: Returns the status of existing builds.
      security:
      - ApiKeyAuth: []
      responses:
        '200':
          description: OK (successfully authenticated)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusSchema'
        '401':
          description: 'Failed to show status: secret key could not be confirmed'
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationError'
        '500':
          description: Failed to show status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
      operationId: getStatus
      x-operation-id-source: derived
  /ping:
    get:
      tags:
      - General
      summary: Ping backend
      description: 'Pings the backend, responds with the status of the catapult.


        ### Example


        `/ping`'
      responses:
        '200':
          description: OK (catapult responds)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PingSchema'
        '500':
          description: Failed to ping catapult
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GeneralError'
      operationId: getPing
      x-operation-id-source: derived
components:
  schemas:
    GeneralError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              example: Some error message
    StatusSchema:
      type: object
      properties:
        builds:
          type: array
          items:
            properties:
              accessed:
                type: string
                example: '2018-05-11 18:29:57'
              accessed-secs-ago:
                type: integer
                example: 326021.5
              hash:
                type: string
                example: d91d063efb5a8439643147c7367e3a4ddad5ec63
              since:
                type: string
                example: '2018-05-11 18:48:32'
              status:
                type: string
                example: Done
    AuthenticationError:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
              example: Authentication failed.
    PingSchema:
      type: object
      properties:
        message:
          type: string
          example: PONG
        time:
          type: integer
          example: 0.0081
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: secret_key