---
title: How to Retrieve an OIDC Issuer
url: https://docs.vultr.com/platform/iam/oidc/oidc-issuers/how-to-retrieve-an-oidc-issuer
description: Retrieve the configuration details of a specific OIDC issuer in Vultr IAM. View the issuer URL, audience, and metadata through the Vultr IAM API endpoint.
publish_date: 2026-03-24T19:52:51.188743Z
last_updated: 2026-04-28T15:37:36.595650Z
---

Retrieving an OIDC issuer returns its full configuration, including the registered public key components and source type. This is useful for verifying the issuer setup or confirming the registered JWK details.

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

1. Send a `GET` request to the [**List OIDC Issuers** endpoint](https://www.vultr.com/api/#tag/oidc/operation/list-oidc-issuers) to retrieve all issuers.

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

    Note the `id` of the issuer you want to retrieve.

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

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

    The response contains the resource details.