# Deepai — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Create stunning AI-generated images from text descriptions using over 123 different artistic styles like cyberpunk, anime, watercolor, and pixel art. Instantly transform your creative ideas into visual artwork and retrieve them as ready-to-use image files.

**Category:** Developer Tools | **Website:** [deepai.org/](https://deepai.org/) | **Docs:** [parse.bot/marketplace/74887276-31e4-465f-b1be-182da015186d/deepai-org-api](https://parse.bot/marketplace/74887276-31e4-465f-b1be-182da015186d/deepai-org-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-deepai-org-api-74887276/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### generate_image

Generate an AI image from a text prompt. Submits the prompt to DeepAI's text-to-image model and returns the generated image as base64-encoded data along with metadata including a direct URL. Supports 123 art styles and configurable dimensions (128-1536px). Generation typically takes 5-15 seconds depending on quality setting.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `height` | integer | No | Image height in pixels (128-1536). |
| `quality` | string | No | Quality preference. 'true' for higher quality (slower), 'false' for faster generation. |
| `style` | string | No | Art style/model slug. Use list_styles endpoint for the full set of 123 accepted slugs. |
| `text` | string | Yes | The text prompt describing the image to generate. |
| `width` | integer | No | Image width in pixels (128-1536). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-deepai-org-api-74887276/generate_image \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"height":"<integer>","quality":"<string>","style":"<string>","text":"<string>","width":"<integer>"}'
```

### list_styles

List all 123 available art styles that can be used with generate_image. Each style has a slug (the wire code passed as the style parameter) and a human-readable display name. The list is static and does not paginate.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-deepai-org-api-74887276/list_styles \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
