List store credentials
GET
/v1/credentials
const url = 'https://api.extport.dev/api/v1/credentials';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/credentials \ --cookie extport_session=<extport_session>Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”OK
Media typeapplication/json
object
Example
{ "credentials": [ { "store": "chrome" } ]}