Skip to main content
This quickstart walks you through everything you need to go from a brand-new account to a working API integration. By the end, you’ll have authenticated with the Jomioz REST API and received a live response — a solid foundation for everything you’ll build next.
1

Create Your Account

Sign up for a Jomioz account at app.jomioz.com.
  1. Enter your work email address and choose a password.
  2. Check your inbox for a confirmation email and click the verification link.
  3. Complete the onboarding prompts to name your workspace and select your plan.
Once you finish onboarding, you’ll land on the Jomioz Dashboard — your home base for managing resources, monitoring activity, and configuring your workspace.
2

Generate an API Key

Authenticate every API request with a personal API key.
  1. In the Dashboard, click your workspace name in the top-left corner.
  2. Navigate to Settings → API Keys.
  3. Click New Key, enter a descriptive name (for example, my-first-key), and click Create.
  4. Copy the key that appears — this is the only time Jomioz will display the full value.
Store your API key in a secure location such as a password manager or a secrets manager like AWS Secrets Manager or HashiCorp Vault. Never commit it to source control or share it in plain text.
3

Make Your First API Call

Use your API key to fetch your Resources from the Jomioz API. Pass the key as a Bearer token in the Authorization header.
Replace YOUR_API_KEY with the key you copied in the previous step. A 200 OK response confirms your credentials are valid and your setup is working.
4

Explore the Response

A successful request returns a JSON object containing a paginated list of your Resources. If your account is brand new, the data array will be empty — that’s expected.
As you create Resources through the Dashboard or API, they’ll appear here in subsequent requests. Use the page and per_page query parameters to paginate through larger result sets.

What’s Next

Now that you’ve made your first API call, explore the rest of the platform.

Core Concepts

Deepen your understanding of Resources, Events, and the Jomioz data model before you start building.

Integrations Guide

Connect Jomioz to your existing tools and set up your first webhook-powered workflow.