List API keys
GET
/v1/keys
const url = 'https://api.extport.dev/api/v1/keys';const options = {method: 'GET', headers: {cookie: 'extport_session=<extport_session>'}};
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.extport.dev/api/v1/keys \ --cookie extport_session=<extport_session>Never returns the plaintext key or its hash — only a masked preview.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK
Media typeapplication/json