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.
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.
Authorization: Bearer $MODUOS_API_KEY02Make 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.
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.
{
"data": [
{
"id": "ws_founder_studio",
"name": "Founder Studio",
"created_at": "2026-09-01T09:00:00Z"
}
],
"has_more": false
}Keep building
Was this page helpful?
