Skip to main content

Get started in two steps

1

Create an API Key

Go to the Dashboard and navigate to your Organization Settings to create an API key.
2

Make your first request

Use your API key to fetch your user profile:
curl --request GET \
  --url https://v2-nova-api.prod.czmx.in/me \
  --header 'Authorization: Bearer YOUR_API_KEY'

Response

{
  "id": "user_123",
  "email": "[email protected]",
  "created_at": "2026-01-15T10:30:00Z",
  "organizations": [
    {
      "id": "org_456",
      "name": "My Organization",
      "slug": "my-org",
      "role": "admin",
      "joined_at": "2026-01-15T10:30:00Z"
    }
  ]
}
You’re all set! Explore the API Reference to see all available endpoints.