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:
Get started with the Nova API in minutes
Create an API Key
Make your first request
curl --request GET \
--url https://v2-nova-api.prod.czmx.in/me \
--header 'Authorization: Bearer YOUR_API_KEY'
{
"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"
}
]
}