---
title: How to Retrieve an OIDC Provider
url: https://docs.vultr.com/platform/iam/oidc/oidc-providers/how-to-retrieve-an-oidc-provider
description: Retrieve the configuration details of a specific OIDC provider in Vultr IAM. View the client ID, callback URL, and provider metadata through the IAM API.
publish_date: 2026-03-24T19:52:58.687890Z
last_updated: 2026-04-28T15:38:53.012388Z
---

Retrieving an OIDC provider returns its configuration details, including the linked issuer ID. This is useful for verifying the provider setup or obtaining the issuer ID for JWKS operations.

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

1. Send a `GET` request to the [**List OIDC Providers** endpoint](https://www.vultr.com/api/#tag/oidc/operation/list-oidc-providers) 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 you want to retrieve.

1. Send a `GET` request to the [**Read OIDC Provider** endpoint](https://www.vultr.com/api/#tag/oidc/operation/get-oidc-provider). Replace `{provider-id}` with the provider id.

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

    The response contains the resource details.