Appearance
Fresh 2026
SOP: Make Your First API Call
Procedure to go from zero to a successful Merge Unified API response in under 10 minutes.
Prerequisites
- A Merge account (sign up at app.merge.dev).
- Your API key from the Merge dashboard keys page.
Procedure
- Get your API key. Copy it from the dashboard. Keep it server-side only.
- Create a test Linked Account. In the dashboard, open Test Linked Accounts, press Create test Linked Account, and pick an integration (for example BambooHR under HRIS). A test Linked Account simulates an end user connection without touching production data.
- Copy the test account token. The test Linked Account gives you an
X-Account-Tokento use in requests. - Make a GET request. Call a list endpoint for the category, sending both headers:bash
curl https://api.merge.dev/api/hris/v1/employees \ -H "Authorization: Bearer <API_KEY>" \ -H "X-Account-Token: <ACCOUNT_TOKEN>" - Confirm the response. You should receive normalized Common Model data with cursor-based pagination.
Verification
- Response status is
200. - The body contains a
resultsarray and anextpagination cursor.