Getting Started
Get started using the Naviget API in three short steps.
PrerequisitesCopied!
-
Active Naviget account (sign up at naviget.com)
-
Valid user role with API access permissions
Step 1: Obtain API CredentialsCopied!
-
Sign in to your Naviget account
-
Navigate to Account Settings → API Keys
-
Click Create API Key
-
Configure your key:
-
Name: Descriptive identifier (e.g., "Production Server")
-
Expiration: Recommended 90 days for security (defaults to never expire)
-
Role: Defaulted (coming soon…)
-
-
Generate Key and securely store the secret value
⚠️ Important: The API key secret is only shown once. Store it securely!
Step 2: Choose Your Authentication StrategyCopied!
API Keys (Recommended)
Add the following authorization header to your request:
Authorization: "ApiKey {YOUR_API_KEY}"
JWT Tokens
-
Authenticate at /api/auth/signin to get your access token
-
Include the bearer token in you authorization header:
Authorization: "Bearer {YOUR_JWT_TOKEN}"
Step 3: Make Your First Request!Copied!
curl -X GET "https://api.naviget.com/api/users/me" \
-H "Authorization: ApiKey YOUR_API_KEY" \
-H "Content-Type: application/json"
Next StepsCopied!
-
Explore our API Reference for more info on all our endpoints
-
Get started implementing!