The Notealy Public API is a JSON-over-HTTPS REST API. Use it to push contacts into the CRM from your website, sync companies with another source of truth, and dispatch transactional or campaign emails — all while letting workflows defined in the dashboard (automations, tags, pipelines) react to the data you send.Documentation Index
Fetch the complete documentation index at: https://docs.notealy.com/llms.txt
Use this file to discover all available pages before exploring further.
Base URL
/v1. Breaking changes will be released under a new version prefix; additive changes ship in place.
Authentication
Every request must carry a Bearer API token. The first call from any new integration should beGET /v1/me — it requires no scope and confirms the token is alive:
200 response returns the token’s identity card and the organization it belongs to. Create tokens in the dashboard at Settings → API Tokens. They look like sk_live_<random> and are shown only once at creation — store them securely. See Authentication for scopes and best practices.
Content type
Request bodies are JSON. SetContent-Type: application/json on every POST, PATCH and DELETE request that has a body.