Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / CRM / Axonaut API
Axonaut API logo

Axonaut API

Agent-ready OpenAPI document · curated by JenticCRMContact ManagementapiKey15 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Manage Axonaut contacts, invoices, quotations, expenses, projects, and opportunities from one CRM API. Suited to agents that automate quote-to-cash and pipeline tracking for SMBs.

Use for: Create a new contact in Axonaut from a webform submission, Issue an invoice for a completed project in Axonaut, Send a quotation to a prospect for a fixed-price engagement, Log a business expense in Axonaut with a category

Not supported: Does not handle payroll, banking integrations, or HR records - use Axonaut for CRM contacts, opportunities, quotations, invoices, expenses, and projects only.

Jentic publishes the only available OpenAPI specification for Axonaut API, keeping it validated and agent-ready. Axonaut is an all-in-one CRM and small-business management platform popular with French SMBs. The v1 API exposes contacts, invoices, quotations, expenses, projects, and opportunities with create, read, and update operations, supporting both sales-pipeline workflows and accounting integrations. Authentication uses an API key passed in the userApiKey header.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Axonaut API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Axonaut 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Faxonaut.com%2Faxonaut" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Faxonaut.com%2Faxonaut" | 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 Axonaut API.

Create, list, retrieve, and update contacts in the Axonaut CRM

Issue and track invoices through the /invoices endpoints

Generate and list sales quotations for prospects and customers

Record and list business expenses by category and date

Create and list projects associated with customers and opportunities

Track sales opportunities and pipeline stages via the /opportunities endpoints

Use Cases

Patterns agents use Axonaut API for, with concrete tasks.

★ Quote-to-Cash Automation

SMB ops teams can automate the path from prospect to invoice by chaining /quotations and /invoices. A signed quote can be converted into an invoice via POST /invoices once accepted, keeping accounting and CRM aligned. Suited to consultancies and agencies that bill against fixed-price quotes.

Create a quotation via POST /quotations for a prospect, then on acceptance create an invoice via POST /invoices referencing the same contact

CRM Contact Sync from Lead Sources

Marketing automation tools can push captured leads into Axonaut as contacts via POST /contacts and update them on subsequent enrichment via PUT /contacts/{id}. Pair with /opportunities to create a pipeline entry once the contact is qualified. Useful for unified contact records across acquisition channels.

POST /contacts with the new lead's details and create an opportunity via POST /opportunities tied to that contact id

Expense and Project Tracking

Finance teams can log business expenses against categories via POST /expenses and tie work to /projects so cost reporting reflects actual project P&L. The list endpoints support periodic reconciliations against bank or card statements. Suited to professional-services teams running multiple concurrent client engagements.

POST /expenses with a categorised business expense and link it to the active project by id for accurate project cost tracking

Agent-Driven Pipeline Updates via Jentic

A revenue-ops agent can refresh contacts, opportunities, and invoices in Axonaut on a schedule via Jentic without holding the userApiKey. Jentic exposes the contact, opportunity, and invoice operations as discoverable tools the agent can chain. Suited to revenue copilots that keep CRM and books in sync.

Search Jentic for 'list axonaut opportunities', load GET /opportunities, and execute it to retrieve the current pipeline for a weekly review

Key Endpoints

15 endpoints — jentic publishes the only available openapi specification for axonaut api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/contacts

List contacts

POST

/contacts

Create a contact

GET

/invoices

List invoices

POST

/invoices

Create an invoice

POST

/quotations

Create a quotation

POST

/expenses

Log an expense

GET

/opportunities

List opportunities

GET

/contacts

List contacts

POST

/contacts

Create a contact

GET

/invoices

List invoices

POST

/invoices

Create an invoice

POST

/quotations

Create a quotation

POST

/expenses

Log an expense

GET

/opportunities

List opportunities

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Axonaut by hand means placing the key in its non-standard userApiKey header, pointing at axonaut.com/api/v1, and writing your own pagination and back-off across contacts and invoices. Through Jentic you install once, import the Axonaut API from the API Directory, store the API key once, and your agent calls it.

Permission scoping

Permission scoping

Axonaut exposes a resource id in the URL path for some reads such as GET /contacts/{id}, but creates and updates carry the record in the request body, so scoping is best done by operation. You limit the agent to the operations it needs, such as GET /opportunities or POST /invoices, and the rest are not exposed unless you add them.

Credential management

Credential isolation

Your Axonaut user API key is stored once, encrypted, by your own Jentic One instance and injected into the userApiKey header at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'create an invoice in axonaut' or 'list opportunities', and Jentic returns the matching Axonaut operation with its input schema so the agent calls the right endpoint without browsing the docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

HubSpot API

→

HubSpot is a much larger CRM platform competing with Axonaut for SMB sales workflows.

Pick HubSpot when the team needs a wider marketing-and-sales suite; pick Axonaut for a French-market SMB focus with tighter accounting integration.

Alternative

Pipedrive API

→

Pipedrive is a sales-focused CRM with strong pipeline workflows competing with Axonaut.

Choose Pipedrive when the workflow is sales-pipeline only; choose Axonaut when invoicing and expenses are also in scope.

Complementary

Zoho API

→

Zoho's broader business suite often pairs with smaller CRMs for accounting or workflow extensions.

Use Zoho alongside Axonaut when the team uses Zoho Books or other Zoho modules and Axonaut owns the front-office CRM.

FAQs

Specific to using Axonaut API through Jentic.

Why is there no official OpenAPI spec for Axonaut API?

Axonaut does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Axonaut API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Axonaut API use?

Axonaut uses an API key passed in the userApiKey header. Through Jentic, the key is stored encrypted in the vault and injected into the userApiKey header on every request.

Can I create invoices and quotations with the Axonaut API?

Yes. POST /quotations creates a sales quote and POST /invoices creates an invoice. Both are tied to a contact id so the records stay aligned with the CRM.

How do I track my sales pipeline through the Axonaut API?

Use GET /opportunities to list pipeline entries and POST /opportunities to add new ones. Pair with /contacts and /projects to keep the pipeline tied to the right customer and engagement.

What are the rate limits for the Axonaut API?

The Axonaut OpenAPI spec does not declare published rate limits. Axonaut enforces account-level quotas; back off on 429 responses if encountered when iterating across pages.

How do I list opportunities through Jentic?

Search Jentic for 'list axonaut opportunities', load GET /opportunities, and execute it. Jentic injects the userApiKey header and returns the current pipeline entries to your agent.

Can I limit what my agent is allowed to do with the Axonaut API?

Yes. Because Jentic One is self-hosted, you decide which Axonaut operations your agent can reach, and scoping is done per operation. You can expose only the endpoints the task needs, such as GET /opportunities to read the pipeline or POST /invoices to raise an invoice, while leaving contacts, quotations, expenses, and everything else unavailable unless you add them. Your Axonaut user API key stays with your own instance and is injected into the userApiKey header at execution time, so the agent calls only the operations you allowed.

GET STARTED

Start building with Axonaut API

Explore with Jentic One
View OpenAPI Document