get started / Quickstart

Build on your connected workspace.

Connect your tools to ModuOS. Create an API key, make your first request, and bring your workspace into your own workflows.

5 minute quickstartREST API · JSON responses

01Create an API key

In your workspace, open Settings → Developer settings and create a new API key. Give it a name you’ll recognize and choose the access it needs.

Keep your key private. Use it on your server and store it as an environment variable.

AuthenticationBearer token
Authorization: Bearer $MODUOS_API_KEY

02Make your first request

Start by listing your workspaces. Send your key in the Authorization header with every request.

Use a workspace ID from the response to work with its projects, tasks and connected records.

RequestcURL
curl https://api.moduos.com/v1/workspaces \
  -H "Authorization: Bearer $MODUOS_API_KEY"

03Your workspace, connected

A successful request returns your workspaces as JSON. You’re ready to create an integration that works with your team.

Next, explore the projects endpoint or subscribe to webhooks to keep your tools in sync.

Response200 OK
{
  "data": [
    {
      "id": "ws_founder_studio",
      "name": "Founder Studio",
      "created_at": "2026-09-01T09:00:00Z"
    }
  ],
  "has_more": false
}

Keep building

Was this page helpful?