DIPS .well Known API

The .well Known API from DIPS — 2 operation(s) for .well known.

Operations 2

GET /.well-known/openid-configuration OpenID Connect Discovery Document #
GET /.well-known/openid-configuration/jwks Returns the Identity Server's public key set in the JWKS format #

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-well-known-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-well-known-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DIPS Federation Service .well Known 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: .well Known
paths:
  /.well-known/openid-configuration:
    get:
      operationId: openid-configuration
      summary: OpenID Connect Discovery Document
      description: 'The /.well-known/openid-configuration endpoint returns the OpenID Connect

        metadata about the authorization server. This information can be used by

        clients to configure their interactions with the DIPS Federation

        Service.'
      responses:
        '200':
          description: The OpenID Connect configuration was successful.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/well-knownOpenid-configurationGet200ApplicationJsonResponse'
              examples:
                default:
                  value:
                    issuer: string
                    authorization_endpoint: string
                    token_endpoint: string
                    userinfo_endpoint: string
                    jwks_uri: string
                    response_types_supported:
                    - string
                    subject_types_supported:
                    - string
                    id_token_signing_alg_values_supported:
                    - string
                    scopes_supported:
                    - string
                    token_endpoint_auth_methods_supported:
                    - string
                    response_modes_supported:
                    - string
                    grant_types_supported:
                    - string
                    acr_values_supported:
                    - string
                    userinfo_signing_alg_values_supported:
                    - string
                    userinfo_encryption_alg_values_supported:
                    - string
                    userinfo_encryption_enc_values_supported:
                    - string
                    id_token_encryption_alg_values_supported:
                    - string
                    id_token_encryption_enc_values_supported:
                    - string
                    request_object_signing_alg_values_supported:
                    - string
      tags:
      - .well Known
  /.well-known/openid-configuration/jwks:
    get:
      operationId: getjwks
      summary: Returns the Identity Server's public key set in the JWKS format
      responses:
        '200':
          description: The public key set in JWKS format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/well-knownOpenid-configurationJwksGet200ApplicationJsonResponse'
              examples:
                default:
                  value:
                    keys:
                    - string
      tags:
      - .well Known
components:
  schemas:
    well-knownOpenid-configurationJwksGet200ApplicationJsonResponse:
      type: object
      properties:
        keys:
          type: array
          items:
            type: string
      x-apim-inline: true
    well-knownOpenid-configurationGet200ApplicationJsonResponse:
      type: object
      properties:
        issuer:
          type: string
        authorization_endpoint:
          type: string
        token_endpoint:
          type: string
        userinfo_endpoint:
          type: string
        jwks_uri:
          type: string
        response_types_supported:
          type: array
          items:
            type: string
        subject_types_supported:
          type: array
          items:
            type: string
        id_token_signing_alg_values_supported:
          type: array
          items:
            type: string
        scopes_supported:
          type: array
          items:
            type: string
        token_endpoint_auth_methods_supported:
          type: array
          items:
            type: string
        response_modes_supported:
          type: array
          items:
            type: string
        grant_types_supported:
          type: array
          items:
            type: string
        acr_values_supported:
          type: array
          items:
            type: string
        userinfo_signing_alg_values_supported:
          type: array
          items:
            type: string
        userinfo_encryption_alg_values_supported:
          type: array
          items:
            type: string
        userinfo_encryption_enc_values_supported:
          type: array
          items:
            type: string
        id_token_encryption_alg_values_supported:
          type: array
          items:
            type: string
        id_token_encryption_enc_values_supported:
          type: array
          items:
            type: string
        request_object_signing_alg_values_supported:
          type: array
          items:
            type: string
      x-apim-inline: true
  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.'