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

# Mynth Documentation

> Build image generation workflows with the Mynth API, SDK, webhooks, and browser-safe task polling.

Mynth is an image generation platform for developers. You send a prompt and optional controls, Mynth creates an async task, and you receive results through polling, webhooks, or both.

The documentation is organized for external teams integrating Mynth into production products. It focuses on how to make requests, retrieve results, and design safe client and server flows.

<CardGroup cols={2}>
  <Card title="Quickstart" icon="bolt" href="/quickstart">
    Generate your first image with the JavaScript SDK.
  </Card>

  <Card title="Generate Images" icon="image" href="/guides/generate-images">
    Use the SDK or the REST API to create image tasks.
  </Card>

  <Card title="Webhooks" icon="bell" href="/guides/use-webhooks">
    Deliver completed task results to your backend automatically.
  </Card>

  <Card title="Content Rating" icon="shield-check" href="/guides/rate-images">
    Rate existing images for \$0.0002 per image.
  </Card>

  <Card title="Alt Text" icon="text-cursor-input" href="/guides/generate-alt-text">
    Generate short alt text for existing images.
  </Card>

  <Card title="Browser Polling" icon="browser" href="/tutorials/browser-polling">
    Build an async flow that is safe to use from the browser.
  </Card>
</CardGroup>

## What you can build

* Text-to-image generation with automatic model and size selection
* Async pipelines that return immediately and finish in the background
* Parallel multi-model or multi-prompt generation with ordinary client-side concurrency
* Client-side status polling without exposing your API key
* Server-side integrations that receive signed webhook events
* Structured prompts, input images, content rating, alt text, and metadata-driven workflows

## Start with the right path

Use this documentation based on the kind of problem you need to solve:

* New integration: start with [Quickstart](/quickstart)
* Need async UI flows: read [Browser Polling](/tutorials/browser-polling)
* Need content rating: read [Rate Image Content](/guides/rate-images)
* Need image alt text: read [Generate Image Alt Text](/guides/generate-alt-text)
* Need webhook delivery: read [Use webhooks](/guides/use-webhooks)
* Need request details: read [Image generation request reference](/reference/image-generation-request)
* Need SDK behavior: read [JS/TS SDK overview](/sdk/js-ts/overview)

## Models

* Browse the live model catalog at [mynth.io/models](https://mynth.io/models)
* In the SDK, use `AVAILABLE_MODELS` when you need runtime model metadata
* See [Types and Models](/sdk/js-ts/types-and-models) for capability checking
