How to Retrieve OIDC Provider Configuration

Updated on 08 April, 2026

Retrieve the OpenID Connect discovery configuration for an OIDC provider in Vultr IAM. Access endpoints, supported scopes, and claims from the provider.


The OIDC provider discovery endpoint returns the standard OpenID Connect configuration document. External systems use this document to discover authorization, token, JWKS, and userinfo endpoints for the provider.

This guide explains how to retrieve the OIDC provider configuration using the Vultr API.

  1. Send a GET request to the List OIDC Providers endpoint to retrieve all providers.

    console
    $ curl "https://api.vultr.com/v2/oidc/provider" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    Note the id of the provider whose configuration you want to retrieve.

  2. Send a GET request to the OIDC Provider Discovery endpoint. Replace {provider-id} with the provider id.

    console
    $ curl "https://api.vultr.com/v2/oidc/provider/{provider-id}/.well-known/openid-configuration" \
        -X GET \
        -H "Authorization: Bearer ${VULTR_API_KEY}"
    

    The response contains the OIDC discovery configuration.

Comments