Step 1 5 min

Create Your MOSS Account

Register directly on mosscomputing.com. Get your access token.

Direct Customer Registration

You are the customer. You govern your own AI agents.

As a direct customer, you register on mosscomputing.com and get a customer account. You use your access token to register agents, create policies, and sign actions. There is no partner in the middle.

Step 1

Register

Step 2

Verify email

Step 3

Login

Step 4

Sign actions

Register via API

Registertypescript
const response = await fetch('https://api.mosscomputing.com/v1/auth/register', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    email: 'you@acme.com',
    password: 'your-secure-password',
    product: 'platform',
  }),
});
const account = await response.json();
Response200 OK
{
  "message": "Account created. Check your email to verify.",
  "org_id": "d0ddcd43-eeab-4e49-bc9b-f99cf255a44b"
}

Verify Email and Login

Logintypescript
const response = await fetch('https://api.mosscomputing.com/v1/auth/login', {
  method: 'POST',
  headers: { 'Content-Type': 'application/json' },
  body: JSON.stringify({
    email: 'you@acme.com',
    password: 'your-secure-password',
  }),
});
const { access_token } = await response.json();
// Use as: Authorization: Bearer <access_token>
Response200 OK
{
  "access_token": "eyJhbGciOi...",
  "token_type": "bearer",
  "expires_in": 3600
}

You now have:

  • A MOSS org for your company
  • A Bearer access token for API calls
  • Console access at app.mosscomputing.com