Getting Started
Learn how to set up and start using the Nudg3 API
Getting Started
This guide will help you get up and running with the Nudg3 API in under 5 minutes.
Prerequisites
Before you begin, you'll need:
- A Nudg3 account with an active workspace
- An API key (we'll create one in this guide)
- A tool to make HTTP requests (curl, Postman, or your preferred language)
Step 1: Create an API Key
- Log in to your Nudg3 Dashboard
- Navigate to Settings > API Keys
- Click Create New Key
- Give your key a descriptive name (e.g., "Development", "Production")
- Select the appropriate scopes:
read:analytics- Access to analytics endpointsexport:data- Access to export endpoints
- Copy your API key immediately - it won't be shown again!
Keep your API key secure. Never commit it to version control or expose it in client-side code.
Step 2: Make Your First Request
Let's verify your API key works by fetching your dashboard analytics.
Using cURL
Using JavaScript
Using Python
Step 3: Explore the Response
A successful response will look like this:
Understanding the Data
| Field | Description |
|---|---|
success | Boolean indicating if the request succeeded |
data.brands | Array of brand visibility metrics |
data.aggregates | Overall totals and averages |
data.top_sources | Most frequently cited sources |
message | Human-readable status message |
Next Steps
Now that you've made your first API call, explore these guides: