> ## Documentation Index
> Fetch the complete documentation index at: https://docs.easy-peasy.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Easy-Peasy.AI API

> Programmatically access AI-powered text generation, image generation, transcription, and text-to-speech

## Getting Started

Use the Easy-Peasy.AI API to integrate AI content generation directly into your applications.

<Columns cols={2}>
  <Card title="Introduction" icon="book" href="/api-reference/introduction">
    Learn about authentication, base URL, and available endpoints.
  </Card>

  <Card title="Get API Key" icon="key" href="https://easy-peasy.ai/settings/api">
    Sign up and generate your API key.
  </Card>
</Columns>

## Available APIs

<Columns cols={2}>
  <Card title="Text Generation" icon="pen" href="/api-reference/endpoint/generate">
    Generate blog posts, emails, social media content, and more using 50+ templates.
  </Card>

  <Card title="Image Generation" icon="image" href="/api-reference/endpoint/generate-image">
    Create AI images with DALL-E 3, Stable Diffusion XL, or Stable Diffusion 3.0.
  </Card>

  <Card title="Transcription" icon="microphone" href="/api-reference/endpoint/create-transcription">
    Transcribe audio files with speaker detection and enhanced quality.
  </Card>

  <Card title="Text-to-Speech" icon="volume-high" href="/api-reference/endpoint/generate-tts">
    Convert text to natural-sounding speech with 150+ AI voices.
  </Card>
</Columns>

## Quick Example

```bash theme={null}
curl -X POST https://easy-peasy.ai/api/generate \
  -H "Content-Type: application/json" \
  -H "x-api-key: YOUR_API_KEY" \
  -d '{
    "preset": "blog-post",
    "keywords": "How to get started with AI",
    "tone": "professional",
    "outputs": 1
  }'
```
