Developers & AI Agents
AclipA Documentation
API version 0.1 — Updated April 2026
Product Overview
AclipA is an AI-powered documentation automation tool that turns any website URL into three outputs simultaneously:
- Narrated demo video — AI navigates your site and records a walkthrough with studio-quality voiceover. No browser extension, no manual recording.
- Automated test — the same navigation script becomes a scheduled end-to-end test. Runs at intervals, detects regressions, delivers video evidence of failures.
- Step-by-step guide — auto-generated written guide with screenshots at every action. Publishes to Zendesk, Confluence, Notion, or Help Scout. Self-updates when your product changes.
Status: Pre-launch. AclipA is in the final stages before public release. Join the waitlist for early access and a founding-member discount.
Inputs: A website URL and a plain-language prompt describing what to demonstrate or test.
Outputs: Narrated video file, automated test run schedule, and a screenshot-based step-by-step guide.
Machine-Readable Resources
| Resource | URL | Format |
|---|---|---|
| OpenAPI spec | /openapi.json | OpenAPI 3.0.3 JSON |
| LLM site description | /llms.txt | Plain text (llms.txt standard) |
| XML sitemap | /sitemap.xml | XML sitemap with lastmod, changefreq, priority |
| Crawler policy | /robots.txt | robots.txt — AI/LLM crawlers explicitly welcomed |
| This page | /docs | HTML — human and agent readable |
REST API Endpoints
The full machine-readable spec is at /openapi.json (OpenAPI 3.0.3). The current API surface covers two form-submission endpoints. A full product API (demo generation, test scheduling, guide retrieval) will be added ahead of public launch.
Both endpoints accept multipart/form-data and require a CSRF token. See CSRF Token Pattern below.
POST /waitlist_join
Submit an email address to join the AclipA early-access waitlist.
| Parameter | Type | Notes |
|---|---|---|
| wl_email | string (email) | required |
| company_url | string (URI) | optional — company website URL |
| interest_video | integer (1) | optional — interested in URL-to-demo-video |
| interest_monitoring | integer (1) | optional — interested in automated monitoring |
| interest_guides | integer (1) | optional — interested in guide generation |
| csrf_token | string | optional — see CSRF note |
Response (text/plain): ok | duplicate | invalid | error
POST /contact_send
Send a message to the AclipA team.
| Parameter | Type | Notes |
|---|---|---|
| name | string | required |
| string (email) | required | |
| message | string | required |
| csrf_token | string | optional — see CSRF note |
Response (text/plain): ok | invalid | error
WebMCP Tools (Browser Agents)
AclipA exposes three tools via the WebMCP browser API (navigator.modelContext). These are available to AI agents running inside a browser on any AclipA page.
aclipa-info
Returns structured product information. Read-only.
aclipa-join-waitlist
Submits an email to the waitlist. Handles CSRF internally.
aclipa-contact
Sends a contact message to the AclipA team. Handles CSRF internally.
CSRF Token Pattern
The form endpoints are protected with CSRF tokens. To call them programmatically, first fetch the corresponding page to extract the token from a hidden input, then include it in your POST request.
All Pages
| Page | URL | Description |
|---|---|---|
| Home | / | Landing page — features, FAQ, waitlist CTA. Supports text/markdown content negotiation. |
| About | /about | Company background, product philosophy, EU/GDPR info. |
| Pricing | /pricing | Pricing — coming soon. |
| Waitlist | /waitlist | Early-access signup form. |
| Jobs | /jobs | Open positions at AclipA. |
| Contact | /contact | Contact form for enquiries. |
| Privacy Policy | /privacy | GDPR-compliant privacy policy (EU data residency). |
| Terms of Service | /terms | Terms governing use of the site and services. |