For Agents
Manage estate agent contacts, listings, leads, viewings, offers, and tenancies in the Apex27 CRM via an X-Api-Key.
Get started with Apex27 API 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:
"create a contact in Apex27"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Apex27 API API.
Manage contacts and contact orders, including referrals, call logs, and free-form notes
List and update property listings, branches, and the agents that own them
Capture leads from marketing sites and route them into the right Apex27 branch
Schedule viewings, log offers, and run valuations and inspections against properties
GET STARTED
Use for: I need to create a new contact in Apex27, Find a contact by phone number, Capture a new buyer lead from a website form, Schedule a viewing for a property listing
Not supported: Does not handle marketing site rendering, payment acceptance, or property valuation modelling - use for the estate agent CRM workflow (contacts, listings, leads, viewings, offers, tenancies, inspections) only.
Jentic publishes the only available OpenAPI specification for Apex27 API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Apex27 API, keeping it validated and agent-ready. Apex27 is an estate agent CRM platform used by UK letting and sales agencies. The API exposes contacts, listings, leads, viewings, offers, valuations, inspections, tenancies, tasks, call logs, notes, branches, and webhooks so agencies can integrate the CRM with marketing sites, lead aggregators, and back-office systems. Authentication is an API key passed in the X-Api-Key header.
Track tenancies for letting agents, including the lifecycle from offer to active tenancy
Issue client-portal sign-in links so applicants can log into the agency portal
Register webhooks to receive change events from Apex27 in another system
Patterns agents use Apex27 API API for, with concrete tasks.
★ Lead capture from marketing sites
Pipe new buyer or tenant enquiries from a marketing site into the Apex27 CRM so the right agent at the right branch picks them up. The agent posts contact details to /contacts (creating or matching), records the originating listing as a referral on /contacts/{contactId}/referrals, and adds a context note via /contacts/{contactId}/notes.
POST a contact to /contacts (or fetch existing by phone), POST the source listing to /contacts/{contactId}/referrals, and POST an enquiry note to /contacts/{contactId}/notes
Viewing and offer workflow
Run the full viewing-to-offer workflow from outside the Apex27 UI. The agent schedules viewings against listings, captures the verbal offer, and logs it back to the property so the negotiator sees a clean trail. Useful for agencies that take initial calls in a contact-centre tool and want the trail to land in Apex27.
Schedule a viewing for a listing, then once a verbal offer is received, POST the offer record and notify the negotiator
Tenancy lifecycle for letting agents
Manage the full tenancy lifecycle for letting agents: from initial enquiry (contact, viewing, offer) through to active tenancy and inspections. The agent calls /tenancies endpoints to advance state and /inspections to record property condition reports. This keeps a single source of truth for the property's history.
Advance a tenancy from offer to active and POST a move-in inspection record with the agent and timestamp
Client portal sign-in flow
Generate a one-click sign-in URL for an applicant or landlord so they can log into the agency's Apex27 portal without a password reset round-trip. The agent calls /client-portal/log-in-url or /client-portal/sign-in-url for the contact, then sends the URL via email or SMS through a separate channel.
POST /client-portal/sign-in-url for the contact and email the returned URL via the agency's mail provider
AI agent integration via Jentic
An agent supporting an Apex27-using agency can search Jentic for 'create a contact' or 'capture a lead' and Jentic returns the matching Apex27 operation. The X-Api-Key is held in the Jentic vault so the agent never handles the secret, and the 85-endpoint surface is reachable through one search-load-execute pattern.
Search Jentic for 'create a contact in Apex27', load the /contacts schema, and POST a new contact record
85 endpoints — jentic publishes the only available openapi specification for apex27 api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/contacts
List contacts in the CRM
/contacts/{id}
Fetch a single contact by id
/contacts/{contactId}/call-logs
List call logs for a contact
/contacts/{contactId}/notes
List notes against a contact
/client-portal/authenticate
Authenticate a client portal user
/client-portal/sign-in-url
Generate a one-click portal sign-in URL
/branches
List branches in the agency
/contacts
List contacts in the CRM
/contacts/{id}
Fetch a single contact by id
/contacts/{contactId}/call-logs
List call logs for a contact
/contacts/{contactId}/notes
List notes against a contact
/client-portal/authenticate
Authenticate a client portal user
Three things that make agents converge on Jentic-routed access.
Credential isolation
Apex27 X-Api-Key values are stored encrypted in the Jentic vault (MAXsystem). The header is attached server-side per call, so the agent context never holds the agency's API key.
Intent-based discovery
Agents search Jentic by intent ('create a contact', 'schedule a viewing', 'log an offer', 'generate a portal sign-in URL') and Jentic returns the right Apex27 operation among the 85 available with its parameter schema.
Time to first call
Direct integration: 1-3 days to map contacts, listings, viewings, offers, and the client-portal flow. Through Jentic: under an hour for any individual operation - search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Anywhere Real Estate API
Real estate listing and lead API for the Anywhere franchise network in the US.
Pick Anywhere for the US franchise network (Coldwell Banker, Century 21, Sotheby's); pick Apex27 for an individual UK agency's CRM.
BoomTown API
Real estate lead nurture and CRM, US-focused.
Pick BoomTown for nurture-heavy US workflows; pick Apex27 for UK estate and letting agents that need viewings, offers, and tenancies in one CRM.
Stripe API
Take card payments for application fees or holding deposits.
Use Stripe to take an applicant's holding deposit or fee, then write the result back as a note or referral against the Apex27 contact.
Specific to using Apex27 API API through Jentic.
Why is there no official OpenAPI spec for Apex27 API?
Apex27 does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Apex27 API 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 Apex27 API use?
API key auth in the X-Api-Key header, issued from the agency's Apex27 admin area. Through Jentic the key is held in the encrypted MAXsystem vault and attached server-side per call, so the secret never enters the agent context or the URL.
Can I capture a website lead and route it to a branch through this API?
Yes. POST a contact to /contacts (or fetch existing), POST the source listing as a referral on /contacts/{contactId}/referrals, and add a note via /contacts/{contactId}/notes. Branch routing is driven by the listing's branch which is returned in the listing record.
How do I generate a client portal sign-in URL through Jentic?
Search Jentic for 'generate an Apex27 portal sign-in URL', load the schema for /client-portal/sign-in-url, and execute it for the contact. The returned URL is single-use and can be sent to the applicant via the agency's normal email or SMS channel.
What are the rate limits for the Apex27 API?
Apex27 applies per-key rate limits that are not declared in the OpenAPI spec. In practice agency-tier keys are sized for normal interactive use; high-volume integrations should batch reads with pagination rather than tight loops.
Does Apex27 support webhooks for new contacts and viewings?
Yes. Apex27 exposes webhook registration endpoints so an external system can be notified when listings, contacts, or viewings change, instead of polling. Register the target URL and Apex27 POSTs change events to it.
/client-portal/sign-in-url
Generate a one-click portal sign-in URL
/branches
List branches in the agency