Retrieve a JSON Web Key Set

GET {{baseUrl}}/admin/keys/:set

This endpoint can be used to retrieve JWK Sets stored in ORY Hydra.

A JSON Web Key (JWK) is a JavaScript Object Notation (JSON) data structure that represents a cryptographic key. A JWK Set is a JSON data structure that represents a set of JWKs. A JSON Web Key is identified by its set and key id. ORY Hydra uses this functionality to store cryptographic keys used for TLS and JSON Web Tokens (such as OpenID Connect ID tokens), and allows storing user-defined keys as well.

HEADERS

KeyDatatypeRequiredDescription
Acceptstring

RESPONSES

status: OK

{"keys":[{"use":"\u003cstring\u003e","kty":"\u003cstring\u003e","kid":"\u003cstring\u003e","alg":"\u003cstring\u003e","crv":"\u003cstring\u003e","d":"\u003cstring\u003e","dp":"\u003cstring\u003e","dq":"\u003cstring\u003e","e":"\u003cstring\u003e","k":"\u003cstring\u003e","n":"\u003cstring\u003e","p":"\u003cstring\u003e","q":"\u003cstring\u003e","qi":"\u003cstring\u003e","x":"\u003cstring\u003e","x5c":["\u003cstring\u003e","\u003cstring\u003e"],"y":"\u003cstring\u003e"},{"use":"\u003cstring\u003e","kty":"\u003cstring\u003e","kid":"\u003cstring\u003e","alg":"\u003cstring\u003e","crv":"\u003cstring\u003e","d":"\u003cstring\u003e","dp":"\u003cstring\u003e","dq":"\u003cstring\u003e","e":"\u003cstring\u003e","k":"\u003cstring\u003e","n":"\u003cstring\u003e","p":"\u003cstring\u003e","q":"\u003cstring\u003e","qi":"\u003cstring\u003e","x":"\u003cstring\u003e","x5c":["\u003cstring\u003e","\u003cstring\u003e"],"y":"\u003cstring\u003e"}]}