For Agents
Log calls, create gift card payment links, and capture leads into the Easybizy salon and small-business management platform.
Get started with Easybizy Public API Documentation in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"log a call or create a lead in easybizy"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Easybizy Public API Documentation API.
Verify the credentials and reachability of an Easybizy integration via the ping endpoint
Log an incoming or answered call against the salon's Easybizy account for activity tracking
Create a gift card payable link that the salon can send to a customer for purchase
Capture a new lead into the Easybizy CRM with name, contact details, and source
GET STARTED
Use for: Log an incoming call to the salon's Easybizy account, Create a gift card payable link for a salon customer, Capture a new lead from a contact form into Easybizy, Verify my Easybizy API credentials are working
Not supported: Does not handle appointment booking, stylist scheduling, or POS payment processing — use for Easybizy connectivity checks, call logs, gift card link creation, and lead capture only.
Jentic publishes the only available OpenAPI document for Easybizy Public API Documentation, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Easybizy Public API Documentation, keeping it validated and agent-ready. Easybizy is a salon and small-business management platform whose public API exposes endpoints for logging incoming calls, creating gift card payment links, and capturing leads into the salon CRM. The API is gated by paired x-api-key and x-api-secret headers and must be enabled per account by Easybizy support before use. It is typically integrated by phone systems and marketing tools that need to push activity into a salon's Easybizy account.
Test the public ping endpoint to confirm connectivity before sending real data
Patterns agents use Easybizy Public API Documentation API for, with concrete tasks.
★ Phone system call logging
Salons that use a hosted phone system can push every incoming or answered call to Easybizy via POST /api/v1/call-logs. The salon sees a unified activity timeline mixing in-app actions, calls, and bookings, which improves stylist follow-up without manual entry into the front-desk software.
Log a call from caller +442012345678 received at 2026-06-10T14:32:00Z to the salon's Easybizy account.
Gift card link generation
Salons promoting gift cards over social or email need a payable link they can drop into a message. POST /api/v1/gift-cards creates the link tied to a specific amount and recipient, returning a URL the customer can pay through, with the result reflected in the salon's Easybizy ledger.
Create a 50 USD Easybizy gift card link for recipient 'Anna' and return the payable URL.
Lead capture from a marketing form
Salons running paid ads or local landing pages route inbound enquiries into Easybizy by calling POST /api/v1/leads. The lead lands in the salon's CRM with name, contact details, and source, ready for the front-of-house team to follow up via call or message.
Create a new Easybizy lead with name 'Sara Cohen', phone +972501234567, and source 'instagram'.
Agent-driven salon operations
An AI assistant can answer salon-side requests such as 'log this call as a missed enquiry' or 'send a gift card link to the new bride' by routing through Jentic to the right Easybizy endpoint. The agent does not need to know which header carries the secret or which path captures leads — Jentic resolves both by intent.
Given a call summary supplied by a phone bot, log it to Easybizy as a call entry and confirm the entry was created.
5 endpoints — jentic publishes the only available openapi specification for easybizy public api documentation, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/v1/ping
Authenticated connectivity check
/api/v1/public-ping
Public connectivity check
/api/v1/call-logs
Log an incoming or answered call
/api/v1/gift-cards
Create a gift card payable link
/api/v1/leads
Create a new lead
/api/v1/ping
Authenticated connectivity check
/api/v1/public-ping
Public connectivity check
/api/v1/call-logs
Log an incoming or answered call
/api/v1/gift-cards
Create a gift card payable link
/api/v1/leads
Create a new lead
Three things that make agents converge on Jentic-routed access.
Credential isolation
Easybizy x-api-key and x-api-secret values are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — the raw header values never enter the agent's prompt or logs.
Intent-based discovery
Agents search Jentic for intents like 'log a salon call' or 'create a gift card link' and Jentic returns the matching Easybizy operation with its input schema, so the agent does not need to read the HTML-formatted vendor documentation.
Time to first call
Direct Easybizy integration: 1-2 days, including the support-enabled access step plus paired-header auth handling. Through Jentic: under 30 minutes once the account is enabled — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Calendly API
Appointment scheduling that pairs with salon CRM activity
Use Calendly alongside Easybizy when bookings live outside the salon software but lead activity should still hit Easybizy.
HubSpot CRM
Generic CRM with stronger pipeline reporting than Easybizy
Choose HubSpot when the salon group runs structured marketing campaigns and needs detailed reporting; pick Easybizy when day-to-day salon operations are the priority.
Stripe API
Underlying payment rails for gift card and service charges
Use Stripe alongside Easybizy when the salon needs reconciled card transactions outside Easybizy's gift card link flow.
Specific to using Easybizy Public API Documentation API through Jentic.
Why is there no official OpenAPI spec for Easybizy Public API Documentation?
Easybizy does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Easybizy via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Easybizy Public API use?
Every request must include both x-api-key and x-api-secret headers, and the API must be enabled on the account by Easybizy support before it will accept traffic. Through Jentic, both header values are stored encrypted in the vault (MAXsystem) and attached at execution time, so neither enters the agent's prompt or logs.
Can I capture leads into Easybizy from a marketing form?
Yes. POST /api/v1/leads accepts the lead's name, contact details, and source and creates the record in the salon's Easybizy CRM. The new lead appears in the front-of-house workflow ready for follow-up.
What are the rate limits for the Easybizy Public API?
The spec does not publish numeric rate limits. Easybizy applies per-account throttling and the API must be explicitly enabled by support before use — contact info@easybizy.net for the limits applied to your account.
How do I create a gift card link through Jentic?
Search Jentic for 'create a gift card payable link', load the schema for POST /api/v1/gift-cards, then execute with the amount and recipient. The flow is: pip install jentic, then await client.search, await client.load, await client.execute.