API Authentication & Setup

Written By Cold Navigator

Last updated About 16 hours ago

Cold Navigator API allows you to connect your internal systems directly with your outreach workflows. By using the API, you can automate lead management, campaign actions, and data synchronization across your tools.

This guide explains how to securely authenticate and start using the API.

Explanation / Steps

  1. Generate API Key
    Go to your dashboard and navigate to:
    Settings → API

Click on "Generate API Key"
Copy your API key and store it securely.

⚠️ Important: Your API key provides full access to your account data. Never share it publicly.

  1. Authentication Method
    All API requests must include your API key in the request header.

Example:

Authorization: Bearer YOUR_API_KEY

This header is required for every request made to the API.

  1. Base URL
    All API requests should be sent to the following base URL:

https://api.coldnavigator.com

Each endpoint will be appended to this base URL.

  1. Making Your First Request
    You can test your API using tools like Postman, Insomnia, or your backend system.

Example flow:

• Add Authorization header
• Send a GET request
• Verify response

A successful response means your API connection is correctly configured.

  1. Environment Setup (Recommended)
    Store your API key securely using environment variables.

Example:

.env file
Server-side config

Never expose your API key in frontend applications.

Tips / Notes

• Always keep your API key private
• Rotate API keys periodically for security
• Use backend systems for all API requests
• Avoid storing keys in public repositories