# Craiyon — 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.

> Generate custom AI images from text descriptions and search through a library of previously created AI-generated images. Get your results instantly as ready-to-use image files.

**Category:** Other | **Website:** [www.craiyon.com/es](https://www.craiyon.com/es) | **Docs:** [parse.bot/marketplace/eb77d172-3cf4-43d8-a762-a5559ff0f087/craiyon-com-api](https://parse.bot/marketplace/eb77d172-3cf4-43d8-a762-a5559ff0f087/craiyon-com-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-craiyon-com-api-eb77d172/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### generate_image

Generate an AI image from a text prompt. Returns the image as base64-encoded data along with metadata. The image is always generated at auto aspect ratio.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `model` | string | No | Model to use for generation. Accepted values: auto, art, photo, drawing, none. |
| `negative_prompt` | string | No | Things to exclude from the generated image |
| `prompt` | string | Yes | Text description of the image to generate |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-craiyon-com-api-eb77d172/generate_image \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"<string>","negative_prompt":"<string>","prompt":"<string>"}'
```

### search_images

Search for existing AI-generated images by text query. Returns image metadata including prompts, dimensions, styles, categories, and direct URLs. Results are sorted by relevance to the query.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_results` | integer | No | Maximum number of results to return (1-100) |
| `query` | string | Yes | Search text to find relevant AI-generated images |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-craiyon-com-api-eb77d172/search_images \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_results":"<integer>","query":"<string>"}'
```
