> For the complete documentation index, see [llms.txt](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.enclaive.cloud/enclaive-multi-cloud-platform/developers/api/client-api/auth/jwks.md).

# JWKS

A JSON Web Key set is a JSON object which represents a set of JSON Web Keys (a JSON object that represents a cryptographic key).

## Get jwks

<mark style="color:blue;">`GET`</mark> `{{BASE_URL}}/api/jwks`

Get a JWKS object to validate the token issued from BE0.

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "keys": [
        {
            "kty": "EC",
            "kid": "PVv6i20A4FfurWUkJFF31EyYnlvrSV1PE3NQ28M51-E",
            "use": "sig",
            "alg": "ES256",
            "crv": "P-256",
            "x": "DF0AzHnyhJE42f3gvTn2FTMRYjmVjkDRzp1m7eaZzEE",
            "y": "QCczeDGNneJ8mTIClmb-_udpUQH-CKIqnxaU9KSklRA"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
