List keys
GET
/api/v1/keys
const url = 'https://example.com/api/v1/keys';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/keysResponses
Section titled “ Responses ”Success
Media type application/json
Array<object>
object
key
additional properties