Mixvisor public API
The mixvisor.com marketing site exposes four JSON endpoints used by its forms. They are public but every endpoint requires a valid Cloudflare Turnstile token, so callers must complete the Turnstile challenge before invoking the API.
Discovery
- API catalog:
/.well-known/api-catalog(application/linkset+json) - OpenAPI 3.1 spec:
/.well-known/openapi.json - Agent skills index:
/.well-known/agent-skills/index.json
Endpoints
POST /api/contact
Submit a contact-form enquiry. Required body fields: name, email, enquiryType
(support, feature, feedback, education, demo,
ambassador, general), subject, message, turnstileToken.
Optional: os, version, daw, subscribeToNewsletter.
POST /api/newsletter
Subscribe an email to the Mixvisor newsletter. Required body fields: email, turnstileToken.
POST /api/waitlist
Join the Mixvisor Pro waitlist. Required body fields: email, turnstileToken.
POST /api/send-download-link
Email a Mixvisor download link to the supplied address. Required body fields: email,
turnstileToken. Optional: subscribe (boolean) to also opt the address into the newsletter.
Responses
All endpoints return JSON. Successful requests respond with { "success": true }; failures respond with
{ "error": "..." } and an HTTP 400 (validation) or 500 (downstream failure) status code.