Organize your team with organizations and projects. Assign roles, manage access, and link your ORCID for scientific attribution.
Your Account
Top-level identity — sign in with GitHub, Google, or ORCID
Materials Lab
Organization — your team, lab, or company
Perovskite Predictions
Alloy Screening
Polymer Research Group
You can belong to multiple orgs
Organizations are how teams collaborate. Create one for your lab, company, or research group. Invite members and assign roles.
POST /api/v1/orgs
{
"name": "Materials Lab",
"slug": "materials-lab"
}
# Invite a member
POST /api/v1/orgs/{org_id}/members
{
"user_id": "...",
"role": "member"
}Projects live inside organizations and isolate your work — each project has its own resources, jobs, and API keys.
POST /api/v1/orgs/{org_id}/projects
{
"name": "BaTiO3 Predictions",
"slug": "batio3-predictions"
}Every org member has one of four roles. The role determines what they can do within the organization.
OwnerFull control — billing, delete org, transfer ownership
AdminManage members, projects, resources, and grants
MemberCreate projects, submit jobs, publish resources
ViewerRead-only access to org resources and job results
Link your ORCID iD to your profile for scientific attribution. Resources you publish on the marketplace will be linked to your ORCID.
PATCH /api/v1/users/me
{
"orcid_id": "0000-0002-1825-0097"
}You can delete your account at any time from Dashboard → Settings. This is permanent — all personal data is removed, tokens are revoked, and audit log references are anonymized.
DELETE /api/v1/users/me
# Requires recent authentication
# Irreversible — all personal data is removed