Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Communications / Nylas API
Nylas API logo

Nylas API

✓ Official Vendor SpecCommunicationsEmail Deliverybearer55 EndpointsREST

For Agents

Read and write across users' email, calendars, and contacts on Google, Microsoft, and IMAP from a single unified API with bearer authentication and hosted auth.

Use for: I need to send an email from a user's connected mailbox, Create a calendar event with two attendees and a Zoom link, List the user's upcoming meetings for tomorrow, Find a free 30-minute slot in the user's calendar this week

Not supported: Does not handle SMS, voice, push notifications, or marketing-grade email analytics — use for unified email, calendar, and contacts only.

The Nylas API v3 provides a unified communications surface across email, calendar, and contacts that abstracts away the differences between Google, Microsoft, and IMAP backends. The 55-endpoint API covers OAuth-style hosted authentication, grant management, connector configuration, and full read/write operations on messages, threads, drafts, events, calendars, and contacts. It is well suited to building scheduling tools, inbox-aware AI assistants, and CRM enrichment workflows that need to read and write across whichever email and calendar provider the end user happens to use.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Nylas API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Nylas API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Nylas API.

Run a hosted OAuth-style flow that returns a long-lived grant for a user's mailbox

Send, list, and reply to email messages and manage drafts on the user's behalf

Create, update, and delete calendar events with attendee and recurrence handling

List the user's calendars and read free/busy availability for scheduling agents

Manage contact records, including create, update, and delete operations

Configure connectors that map a Nylas application to Google, Microsoft, or IMAP backends

Use Cases

Patterns agents use Nylas API for, with concrete tasks.

★ AI Scheduling Assistant

Build a meeting-scheduling assistant that reads a user's calendar, proposes free slots, and creates events with the right attendees, regardless of whether the user is on Google or Microsoft. The unified events and grants endpoints mean one code path covers both backends, and the hosted auth flow handles consent. A working scheduling integration is achievable in 1-2 days from a fresh Nylas account.

GET /v3/grants/{grantId}/calendars/free-busy for the next five days, pick a 30-minute slot, then POST /v3/grants/{grantId}/events with the chosen time and attendees.

Inbox-Aware AI Assistant

Create an inbox copilot that summarises long threads, drafts replies, and triages on the user's behalf. Nylas exposes messages, threads, and drafts through a consistent shape, so an LLM-backed assistant can read context and write replies through the same interface across providers. This avoids maintaining separate Gmail and Microsoft Graph integrations.

List the user's unread messages via /v3/grants/{grantId}/messages, summarise the top thread, and create a draft reply via POST /v3/grants/{grantId}/drafts.

CRM Contact Enrichment

Sync a user's contacts and recent email correspondents into a CRM to keep records up to date without manual entry. Nylas's contact endpoints, combined with thread participants from the messages API, provide a richer signal than a contacts-only sync. This is a common pattern for sales-engagement tools and lightweight CRMs.

List contacts via /v3/grants/{grantId}/contacts and upsert each into the CRM, deduplicating on email address.

Agent-Driven Communication Across Providers

Let an AI agent send a message or schedule a meeting for a user without caring whether the underlying account is Google or Microsoft. Through Jentic, the agent searches by intent and gets only the operations it needs, with grant tokens held in the platform's vault rather than in the agent's context.

Search Jentic for 'send an email from a user mailbox', load the operation, and send a follow-up email referencing yesterday's meeting.

Key Endpoints

55 endpoints — the nylas api v3 provides a unified communications surface across email, calendar, and contacts that abstracts away the differences between google, microsoft, and imap backends.

METHOD

PATH

DESCRIPTION

POST

/v3/connect/auth

Start the hosted OAuth flow

POST

/v3/connect/token

Exchange the auth code for a grant token

GET

/v3/grants

List grants in a Nylas application

DELETE

/v3/grants/{grantId}

Revoke a grant

POST

/v3/connectors

Create a connector for a backend provider

POST

/v3/connect/auth

Start the hosted OAuth flow

POST

/v3/connect/token

Exchange the auth code for a grant token

GET

/v3/grants

List grants in a Nylas application

DELETE

/v3/grants/{grantId}

Revoke a grant

POST

/v3/connectors

Create a connector for a backend provider

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

Nylas API keys and per-user grant tokens are stored encrypted in the Jentic vault. Agents receive scoped access — neither the API key nor any grant token enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search Jentic with phrases like 'send an email from a user mailbox' or 'create a calendar event'. Jentic returns the matching operation and its input schema so the agent can call the correct endpoint without browsing the OpenAPI spec.

Time to first call

Time to first call

Direct integration: 3-5 days for hosted auth, grant handling, and per-resource testing across providers. Through Jentic: under an hour — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Gmail API

→

Direct provider API for Gmail-only workloads, without the unified abstraction.

Choose Gmail directly when the application only needs to support Google accounts and you want the lowest abstraction.

Complementary

SendGrid Email Activity API

→

Pair with Nylas for transactional email tracking and analytics on outbound messages.

Use when outbound app-generated mail needs deliverability analytics that Nylas does not provide.

Complementary

Twilio API

→

Add SMS and voice channels alongside Nylas's email and calendar surface.

Use when the agent needs to fall back to SMS or voice if a user does not respond by email.

FAQs

Specific to using Nylas API through Jentic.

What authentication does the Nylas API use?

Nylas uses bearer authentication. Application-level calls send your Nylas API key in the Authorization header; per-user calls send the grant token issued by the hosted auth flow at /v3/connect/auth and /v3/connect/token. Through Jentic, both keys and grant tokens are stored encrypted in the vault.

Does Nylas support Microsoft and Google in one API?

Yes — that is the core value. The same /v3/grants/{grantId}/messages, /events, and /contacts paths work across Google Workspace, Microsoft 365, and IMAP backends, with the difference handled by Nylas's connector layer.

What are the rate limits for the Nylas API?

The OpenAPI spec does not embed explicit limits. Nylas applies per-application and per-grant throttling that varies by plan; back off on HTTP 429 and the X-RateLimit-* response headers when present.

How do I send an email from a user's mailbox through Jentic?

Run pip install jentic, then search for 'send an email from a user mailbox'. Jentic returns the messages-send operation with its input schema; supply the grant id, recipients, subject, and body and execute. Sign up at https://app.jentic.com/sign-up to get an agent key.

Can I find a free time slot for a user?

Yes — the free/busy endpoints expose availability for the user's connected calendars across providers, so an agent can pick a slot before posting an event via POST /v3/grants/{grantId}/events.

GET STARTED

Start building with Nylas API

Explore with Jentic
View OpenAPI Document