# 21st.dev — 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.

> Browse and discover UI components from the 21st.dev community marketplace, filtering by tag slugs to quickly find input bars, search boxes, prompt containers, and other component types. Integrate these ready-made components into your projects to accelerate your development workflow.

**Category:** Developer Tools | **Website:** [21st.dev/community/components](https://21st.dev/community/components) | **Docs:** [parse.bot/marketplace/74729445-260b-4c10-b755-04020653c049/21st-dev-api](https://parse.bot/marketplace/74729445-260b-4c10-b755-04020653c049/21st-dev-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-21st-dev-api-74729445/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_components

List UI components from the 21st.dev community marketplace filtered by tag slugs. Returns component metadata including name, author, direct URL, CLI install command, and description. Results are sorted by the site's recommendation algorithm. Useful for discovering input components, search bars, chat inputs, prompt containers, and other UI elements. The default tag_slugs cover input bars, search boxes, and prompt containers.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of components to return. Clamped to 1-200. |
| `tag_slugs` | string | No | Comma-separated list of tag slugs to filter components by. Common tag slugs include: input, search-bar, search-input, search, prompt, prompt-input, ai-prompt, ai-chat-input, chat-input, number-input, pin-input, date-input, file-input, tag-input, clearable-input. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-21st-dev-api-74729445/list_components \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","tag_slugs":"<string>"}'
```
