On this page

Introduction

NotiQ’s Public API lets you automate Google Maps lead discovery, campaign control, lead CRM fields, and Gmail send/reply from scripts, Clay, n8n, or AI agents.

Product: notiq.io · Dashboard & API keys: app.notiq.io

SurfaceWhat it isBase
RESTHTTPS JSON APIhttps://api.notiq.io/public/v1
MCPSame operations as tools for Cursor / Claude / ChatGPThttps://mcp.notiq.io
WebhooksOutbound POSTs when replies arrive, leads are tagged, or Gmail disconnectsConfigured in-app

How auth works

  1. Create an API key in the app at /api-mcp (secret shown once).
  2. Send it on every REST call: X-API-Key: sk_live_….
  3. MCP uses the same key (X-API-Key, or OAuth paste-key for Claude/ChatGPT).

What you can do

ActionMethod / path
Check creditsGET /credits
List Gmail accountsGET /accounts
Recent activityGET /activity
Insights overviewGET /insights/overview
List / get campaignsGET /campaigns, GET /campaigns/:id
Launch Maps searchPOST /campaigns
Start / pause outreachPOST …/start, POST …/pause
List / get / add / patch leadsGET/POST/PATCH …/leads (list: at most one of tag / replied / needsReply / excluded=true)
Batch add leadsPOST …/leads/batch (1 credit per created)
Batch tag/excludePOST …/leads/batch-update (0 credits)
Batch delete leadsPOST …/leads/batch-delete (0 credits, irreversible, no refund)
Send GmailPOST /inbox/messages
Receive eventsWebhooks (reply.received, lead.tagged, account.disconnected)

Credits: manual lead insert costs 1 on create (single or batch add); Maps discovery costs 1 per email lead found asynchronously; batch-update and batch-delete cost 0. Insights overview ranks a recent campaign sample — not all-time analytics.

What stays in the dashboard

  • API key and webhook CRUD (/api-mcp)
  • Connecting Gmail accounts
  • Creating agents / message templates (templateId used by start)

Start here

  1. Quickstart — first successful GET /credits
  2. Authentication — keys and hosts
  3. Errors & Credits & rate limits
  4. Endpoints — full route contracts
  5. MCP — tool map for AI clients
  6. Connect Claude / ChatGPT — OAuth connector flow
  7. Webhooks — outbound events
  8. Examples — curl samples