← Back to Productivity & Business

Presently

AI-powered presentation generator

https://hub.toolweb.in/tools/presently/

Endpoints

GET /health

Health Check

POST /create

Create Presentation

Request Body (JSON)

{
  "user_id": "<integer>",
  "input_text": "<string>",
  "num_cards": 10,
  "format_type": "presentation",
  "theme_id": "<string>",
  "primary_color": "<string>",
  "secondary_color": "<string>",
  "user_email": "<string>"
}

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/tools/presently/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/presently/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/presently/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.