API Documentation & Integrations

Programmatic REST & JavaScript client-side APIs for 100+ micro-services.

1. Overview

MakeTemplAI micro-services are available both via browser client-side execution scripts and standard REST endpoint wrappers for developer workflows.

2. Example Endpoint Specification

POST https://tools.maketemplai.com/api/v1/word-count

Returns real-time word count, character statistics, and reading duration.

// Sample cURL Request curl -X POST https://tools.maketemplai.com/api/v1/word-count \ -H "Content-Type: application/json" \ -d '{"text": "Hello world from MakeTemplAI API"}'
// Response 200 OK { "status": "success", "data": { "words": 6, "characters": 32, "readingTimeSec": 2 } }