List API keys for the authenticated account.
GET
/account/api_key/
const url = 'https://api.siteqwality.com/account/api_key/';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
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://api.siteqwality.com/account/api_key/ \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”API keys
Missing or invalid authentication
Internal server error