For Agents
Initiate checkout intents, list organisations and forms, and look up items and orders on HelloAsso across 35 endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the HelloAsso 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%2Fhelloasso.com%2Fhelloasso" | 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%2Fhelloasso.com%2Fhelloasso" | 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 HelloAsso API.
Initialise a checkout intent for a donation or registration via POST /organizations/{organizationSlug}/checkout-intents
Retrieve a checkout intent and its order once the payment is authorised via GET /organizations/{organizationSlug}/checkout-intents/{checkoutIntentId}
Search the directory of organisations and forms via POST /directory/organizations and POST /directory/forms
GET STARTED
Use for: Start a checkout intent for a donation to a HelloAsso organisation, Look up the status of a checkout intent and its associated order, Search HelloAsso for organisations matching a name or category, List the active forms for a given association
Not supported: Does not handle accounting, payroll, tax filing, or French association legal registration - use for HelloAsso checkout intents, forms, organisations, and orders only.
Jentic publishes the only available OpenAPI specification for HelloAsso API, keeping it validated and agent-ready. HelloAsso is a French payments and crowdfunding platform for non-profit associations. The v5 API exposes checkout intents, organisations and forms, item and order lookups, and a directory search across organisations and forms - the building blocks for embedded donation and event-registration flows. Authentication uses OAuth 2.0 client credentials.
List the forms, items, and orders belonging to an organisation through the /organizations/{organizationSlug}/* endpoints
Quick-create a simplified event form via POST /organizations/{organizationSlug}/forms/{formType}/action/quick-create
Get detailed public data for a single form via GET /organizations/{organizationSlug}/forms/{formType}/{formSlug}/public
Retrieve a single order or item by id via GET /orders/{orderId} or GET /items/{itemId}
Patterns agents use HelloAsso API for, with concrete tasks.
★ Embedded Donation Checkout
A French non-profit's website embeds donation flows by initialising a HelloAsso checkout intent and redirecting the donor to the returned payment URL. After payment, the website calls GET /organizations/{organizationSlug}/checkout-intents/{checkoutIntentId} to confirm the order and write a receipt record. HelloAsso handles card processing, SEPA, and tax-receipt rules.
Call POST /organizations/myassociation/checkout-intents with amount and itemBody, then poll GET /organizations/myassociation/checkout-intents/{id} until the order is authorised
Event Registration Site
An association launches a paid event by quick-creating a form via /organizations/{organizationSlug}/forms/{formType}/action/quick-create and exposing it on its site. Registration orders are pulled with /organizations/{organizationSlug}/forms/{formType}/{formSlug}/orders for back-office reporting.
Quick-create an event form via the action/quick-create endpoint, then list its registrations via GET /organizations/{slug}/forms/Event/{formSlug}/orders
Directory Discovery for Aggregators
An aggregator site lists French associations and their fundraising campaigns. POST /directory/organizations and POST /directory/forms apply structured filters such as category and location, returning paginated results suitable for index pages and search experiences.
Call POST /directory/forms with a category filter and paginate through the response to populate an index page
AI Agent Donation Assistant
An AI assistant on a French association's site helps donors find the right campaign and complete a donation. Through Jentic, the agent searches for the checkout-intent operation, loads its body schema, and submits the donation amount and donor info on the user's behalf.
Search Jentic for 'create a helloasso checkout intent', load the operation, and execute it with the donor amount and selected form
35 endpoints — jentic publishes the only available openapi specification for helloasso api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/organizations/{organizationSlug}/checkout-intents
Initialise a checkout intent
/organizations/{organizationSlug}/checkout-intents/{checkoutIntentId}
Retrieve a checkout intent and its order
/directory/organizations
Search organisations in the directory
/directory/forms
Search forms in the directory
/organizations/{organizationSlug}/forms/{formType}/action/quick-create
Quick-create a simplified event form
/organizations/{organizationSlug}/forms/{formType}/{formSlug}/public
Get public data for a form
/orders/{orderId}
Retrieve a single order
/items/{itemId}
Retrieve a single item
/organizations/{organizationSlug}/checkout-intents
Initialise a checkout intent
/organizations/{organizationSlug}/checkout-intents/{checkoutIntentId}
Retrieve a checkout intent and its order
/directory/organizations
Search organisations in the directory
/directory/forms
Search forms in the directory
/organizations/{organizationSlug}/forms/{formType}/action/quick-create
Quick-create a simplified event form
What agents get from Jentic-routed access to this vendor.
Setup
Wiring HelloAsso by hand means running the OAuth 2.0 client-credentials exchange, refreshing tokens, and attaching a bearer token on every call. Through Jentic you install once, import the HelloAsso API from the API Directory, store the client credentials once, and your agent calls it.
Permission scoping
HelloAsso puts the organisation slug in the URL path (/organizations/{organizationSlug}/...), so a rule can pin your agent to one organisation: it can read that organisation's forms and orders and nothing else. You choose the operations it may call, so ones that create a checkout intent or quick-create a form are not included unless you add them.
Credential isolation
Your HelloAsso client id and secret are stored once, encrypted, by your own Jentic One instance and minted into tokens at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'create a donation checkout' or 'list an organisation's forms', and Jentic returns the matching HelloAsso operation with its input schema and required organizationSlug parameter so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe API
Stripe is a global payments platform - broader than HelloAsso's France-focused non-profit niche
Choose Stripe for global merchants and full payments breadth; choose HelloAsso when the user is a French association needing tax-receipt-aware donation flows
PayPal Payments API
PayPal supports donation buttons and global checkout - alternative to HelloAsso for non-profits without French specifics
Pick PayPal when wallet checkout matters globally; pick HelloAsso for French association compliance
Specific to using HelloAsso API through Jentic.
Why is there no official OpenAPI spec for HelloAsso API?
HelloAsso publishes a Swagger UI on api.helloasso.com/v5/swagger but the underlying OpenAPI is not directly redistributed. Jentic generates and maintains this spec so AI agents and developers can call HelloAsso 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 HelloAsso API use?
HelloAsso uses OAuth 2.0 with client credentials issued from your association's HelloAsso account. Through Jentic, the client_id and client_secret live in the encrypted vault and the access token is minted at execution time.
Can I take a donation through the HelloAsso API?
Yes. Initialise a checkout intent via POST /organizations/{organizationSlug}/checkout-intents, redirect the donor to the returned payment URL, and confirm the order via GET /organizations/{organizationSlug}/checkout-intents/{checkoutIntentId}.
What are the rate limits for the HelloAsso API?
The OpenAPI spec does not publish hard rate limits; HelloAsso applies fair-use limits per OAuth client. For directory crawls, paginate /directory/organizations and /directory/forms instead of polling them in tight loops.
How do I create a checkout intent through Jentic?
Run pip install jentic, have the agent search for 'create a helloasso checkout intent', load POST /organizations/{organizationSlug}/checkout-intents, and execute it with totalAmount, itemBody, and the payer details.
Does HelloAsso support event registration as well as donations?
Yes. HelloAsso models events as forms with formType=Event. Quick-create a registration form via the action/quick-create endpoint, then list registrations via GET /organizations/{slug}/forms/Event/{formSlug}/orders.
Can I limit what my agent is allowed to do with the HelloAsso API?
Yes. Because you run Jentic One yourself, your own rules decide which HelloAsso operations and credentials the agent may use. Since HelloAsso puts the organisation slug in the URL path (/organizations/{organizationSlug}/...), you can pin the agent to a single organisation so it reads only that organisation's forms and orders. You also choose the exact operations it can call, so write actions like initialising a checkout intent (POST /organizations/{organizationSlug}/checkout-intents) or quick-creating a form are excluded unless you add them.
/organizations/{organizationSlug}/forms/{formType}/{formSlug}/public
Get public data for a form
/orders/{orderId}
Retrieve a single order
/items/{itemId}
Retrieve a single item