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

> Search through over 7,300 landing page designs to find inspiration and discover design trends that match your style or industry. Quickly browse curated examples of high-performing landing pages to spark creativity and benchmark your own design work.

**Category:** Developer Tools | **Website:** [www.lapa.ninja/](https://www.lapa.ninja/) | **Docs:** [parse.bot/marketplace/60d4aedd-6cc0-4745-b465-3a2ae5e22ca6/lapa-ninja-api](https://parse.bot/marketplace/60d4aedd-6cc0-4745-b465-3a2ae5e22ca6/lapa-ninja-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-lapa-ninja-api-60d4aedd/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_designs

Full-text search across Lapa Ninja's landing page design collection. Matches query against titles, descriptions, categories, and tags. Returns paginated results with design metadata including categories, colors, and external website links. Results are auto-iterated by the SDK.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return per page (1-100). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `query` | string | Yes | Search query to match against landing page designs (titles, descriptions, categories, tags). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lapa-ninja-api-60d4aedd/search_designs \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","offset":"<integer>","query":"<string>"}'
```
