← Back to Productivity & Business

Pitch Deck Generator

Generate pitch deck outlines

https://hub.toolweb.in/creative/pitch-deck-generator/

Endpoints

GET /

Root

GET /health

Health Check

POST /api/pitchdeck/generate

Generate Pitch Deck

Request Body (JSON)

{
  "startupData": "<string>",
  "sessionId": "<string>",
  "userId": "<string>",
  "timestamp": "<string>"
}

Quick Start

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

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