DIPS Status API

The Status API from DIPS — 2 operation(s) for status.

Operations 2

GET /status/health Health #
GET /status/ping Ping #

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/dips-status-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

dips-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DIPS Federation Service Status API
  version: '1.0'
  description: DIPS Federation Service (DFS) is a OpenID Connect provider.
  contact:
    name: DIPS AS
    url: https://dips.developer.azure-api.net/
    email: open@dips.no
  termsOfService: https://dips.developer.azure-api.net/terms
servers:
- url: https://api.dips.no/dips.oauth
tags:
- name: Status
paths:
  /status/health:
    get:
      operationId: health
      summary: Health
      description: Get the health of the server. This is a more in depth check than the ping and will return information of the services dependencies and their health.
      responses:
        '200':
          description: In depth health of the service.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StatusHealthGet200ApplicationJsonResponse'
              examples:
                default:
                  value:
                    status: string
                    statuscode: 0
                    timestamp: string
                    duration: string
                    host: string
                    checks:
                    - status: string
                      statuscode: 0
                      timestamp: string
                      duration: string
                      host: string
                      checks:
                      - name: string
                        status: string
                        statuscode: 0
                        timestamp: string
                        duration: string
      tags:
      - Status
  /status/ping:
    get:
      operationId: get-status-ping
      summary: Ping
      description: Ping the server to see if it is alive
      responses:
        '200':
          description: If everything is working correctly, the server will respond with "OK"
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/StatusPingGet200TextPlainResponse'
              examples:
                default:
                  value: null
      tags:
      - Status
components:
  schemas:
    StatusHealthGet200ApplicationJsonResponse:
      type: object
      properties:
        status:
          type: string
        statuscode:
          type: integer
        timestamp:
          type: string
        duration:
          type: string
        host:
          type: string
        checks:
          type: array
          items:
            oneOf:
            - $ref: '#/components/schemas/DatabaseHealth'
            - $ref: '#/components/schemas/ProductHealth'
      x-apim-inline: true
    StatusPingGet200TextPlainResponse:
      type: string
      x-apim-inline: true
    ProductHealth:
      properties:
        name:
          type: string
        status:
          type: string
        statuscode:
          type: integer
        result:
          type: string
        timestamp:
          type: string
        duration:
          type: string
        data:
          type: object
          properties:
            product.version:
              type: string
            product.name:
              type: string
    DatabaseHealth:
      properties:
        status:
          type: string
        statuscode:
          type: integer
        timestamp:
          type: string
        duration:
          type: string
        host:
          type: string
        checks:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              status:
                type: string
              statuscode:
                type: integer
              timestamp:
                type: string
              duration:
                type: string
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      name: Ocp-Apim-Subscription-Key
      in: header
    apiKeyQuery:
      type: apiKey
      name: subscription-key
      in: query
    openIdConnect:
      type: openIdConnect
      openIdConnectUrl: https://api.dips.no/dips.oauth/.well-known/openid-configuration
x-api-evangelist:
  generated: '2026-09-02'
  method: derived
  source: https://dips.developer.azure-api.net/developer/apis/dips_federation_service_prod/operations?api-version=2022-04-01-preview
  note: 'Assembled verbatim from DIPS AS''s own Azure API Management developer-portal metadata API (Open DIPS, https://dips.developer.azure-api.net). The portal''s anonymous OpenAPI export (saved in openapi/_original/) returns info+servers but an empty paths object; the 25 operations, their request/response representations and the 23 component schemas here were read one-for-one from the portal''s /developer/apis/{id}/operations and /developer/apis/{id}/schemas endpoints on 2026-09-02. Nothing was invented. Ownership: servers[] https://api.dips.no/dips.oauth, info.contact DIPS AS <open@dips.no>, portal branded ''Open DIPS'' by DIPS AS.'