Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Wild Apricot Admin 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.
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%2Fwildapricot.com%2Fwildapricot" | shStep 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%2Fwildapricot.com%2Fwildapricot" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with Wild Apricot Admin API.
Base URL for specific API version.
List of available accounts
Details for specific account
Create a new contact or member record
Contacts list
GET STARTED
Retrieve information about current contact
Patterns agents use Wild Apricot Admin API for, with concrete tasks.
★ CRM Operations
Use the Wild Apricot Admin API to perform crm operations programmatically. The API provides 107 endpoints covering core functionality including base url for specific API version., list of available accounts, details for specific account.
Call GET / to base url for specific API version.
Automated Accounts Management
Automate accounts operations by combining multiple Wild Apricot Admin API endpoints. Agents can list of available accounts and then details for specific account in a single workflow.
Call GET /accounts to list of available accounts, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Wild Apricot Admin API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle oauth2 tokens manually.
Search Jentic for 'base url for specific API version.', load the operation schema, and execute with Jentic-managed credentials
107 endpoints — this is wild apricot's api for administrators.
METHOD
PATH
DESCRIPTION
/
Base URL for specific API version.
/accounts
List of available accounts
/accounts/{accountId}
Details for specific account
/accounts/{accountId}/contacts
Create a new contact or member record
/accounts/{accountId}/contacts
Contacts list
/accounts/{accountId}/contacts/me
Retrieve information about current contact
/accounts/{accountId}/contacts/{contactId}
Retrieve information about specific member or contact
/accounts/{accountId}/contacts/{contactId}
Update information about existing member or contact
/
Base URL for specific API version.
/accounts
List of available accounts
/accounts/{accountId}
Details for specific account
/accounts/{accountId}/contacts
Create a new contact or member record
/accounts/{accountId}/contacts
Contacts list
/accounts/{accountId}/contacts/me
Retrieve information about current contact
/accounts/{accountId}/contacts/{contactId}
Retrieve information about specific member or contact
/accounts/{accountId}/contacts/{contactId}
Update information about existing member or contact
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Wild Apricot Admin API by hand means running its OAuth flow against oauth.wildapricot.org, targeting the separate api.wildapricot.org host, and threading the account id through every call yourself. Through Jentic you install once, import the Wild Apricot Admin API from the API Directory, store the OAuth client once, and your agent calls it.
Permission scoping
Wild Apricot puts the account and contact ids in the URL path (/accounts/{accountId}/contacts/{contactId}), so a rule can pin your agent to one account and the contacts within it. You choose the operations it may call, so writes like updating a contact are not included unless you add them.
Credential isolation
Your Wild Apricot OAuth client is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list contacts for an account' or 'create a contact', and Jentic returns the matching Wild Apricot operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Specific to using Wild Apricot Admin API through Jentic.
What authentication does the Wild Apricot Admin API use?
The Wild Apricot Admin API uses OAuth 2.0 for authorization. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I base url for specific API version. with the Wild Apricot Admin API?
Yes. Use the GET / endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Wild Apricot Admin API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I base url for specific API version. through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'base url for specific API version.'. Jentic returns the matching Wild Apricot Admin API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Wild Apricot Admin API have?
The Wild Apricot Admin API exposes 107 endpoints covering accounts, attachments, contacts operations.
Can I limit what my agent is allowed to do with the Wild Apricot Admin API?
Yes. Because you self-host Jentic One, your own rules decide which Wild Apricot operations and credentials the agent may use. Since the account and contact ids sit in the URL path, such as /accounts/{accountId}/contacts/{contactId}, you can pin the agent to a single account and the contacts within it. You also choose the exact operations it may call, so read-only calls like listing contacts can be permitted while writes such as updating a contact stay off unless you add them.
For Agents
Programmatically base url for specific API version., list of available accounts. Covers 107 operations with oauth2 authentication.
Use for: I need to base url for specific API version., I want to of available accounts, Search for details for specific account, Find all a new contact or member record
Not supported: Does not handle payments, communications, or developer tools - use for crm only.
This is Wild Apricot's API for administrators. You can use it if you already have a Wild Apricot account (typically with a website on *.wildapricot.org). Otherwise, please use https://register.wildapricot.com to create a new account. If you have any questions about this API, please contact our support team at support@wildapricot.com. The API exposes 107 endpoints secured with oauth2 authentication.