Documentation

Introduction

Pandawa is an AI writing platform that helps you turn ideas into content in seconds. With Pandawa you can create blog posts, ad copy, emails, and more without starting from a blank page.

This documentation is here to help you:

  • Learn the basics of Pandawa

  • Explore features like Blog Writer, Ad Generator, and Rewrite tools

  • Set up your account, billing, and team

  • Connect with support and community if you need help

How to Use These Docs

  • Start with Getting Started to create your first draft

  • Dive into Core Features to learn what Pandawa can do

  • Check Teams and Collaboration if you are working with others

  • Visit Account and Billing to manage your plan

  • Go to Support if you need help or want to contact us

Quick Start

  1. Sign up for Pandawa

  2. Enter a prompt (like “Write a blog about remote work”)

  3. Get your first draft in seconds


import fetch from "node-fetch";

async function generateContent() {
  const response = await fetch("https://api.pandawa.ai/v1/generate", {
    method: "POST",
    headers: {
      "Authorization": "Bearer YOUR_API_KEY",
      "Content-Type": "application/json"
    },
    body: JSON.stringify({
      prompt: "Write a blog intro about AI writing tools",
      max_tokens: 200
    })
  });

  const data = await response.json();
  console.log(data.text);
}

generateContent();

Create a free website with Framer, the website builder loved by startups, designers and agencies.