Export all personal data (GDPR right to data portability)
GET
/api/v1/account/export
const url = 'https://dashboard.justcrawl.io/api/v1/account/export';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://dashboard.justcrawl.io/api/v1/account/export \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”JSON file download containing user, org membership, workflows, jobs, schedules, API keys, settings, and audit logs
Media type application/json
object
Example generated
{}User not found