Quickstart
Three simple steps to get started with the Northly API.
1
Create an API Key
Sign in to Northly and create a new API key in your settings. API access is available from the Business plan.
Create API Key2
Make Your First Request
Test your API key with a simple request to the /users/me endpoint.
bash
curl -X GET "https://api.northlyapp.com/v1/users/me" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"json
{
"data": {
"id": "usr_xyz",
"name": "Anna Schmidt",
"email": "anna@example.com",
"role": "admin",
"teams": ["team_product", "team_engineering"]
}
}3
Explore the API
Browse the full API reference to manage Objectives, Key Results, Check-ins, and more.
View API Referencebash
curl -X GET "https://api.northlyapp.com/v1/objectives?page=1&per_page=10" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"