Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.evecloud.xyz/docs/llms.txt

Use this file to discover all available pages before exploring further.

const { setToken, setWorkspace, Projects } = require('@evecloud/sdk');

setToken('TOKEN');
setWorkspace('WORKSPACE_ID');

Projects.list().then(projects => {
    console.log(projects.data);
}).catch((error) => {
    console.log(error);
});