# Ui Eindev — 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 and retrieve beautiful liquid glass UI components from the EinUI registry, complete with their metadata, dependencies, and full source code ready to use in your projects. Quickly find the perfect component for your design needs and get everything you need to integrate it immediately.

**Category:** Developer Tools | **Website:** [ui.eindev.ir/r/registry.json](https://ui.eindev.ir/r/registry.json) | **Docs:** [parse.bot/marketplace/6a285bb6-f2b7-430f-bc41-88877a78c4c6/ui-eindev-ir-api](https://parse.bot/marketplace/6a285bb6-f2b7-430f-bc41-88877a78c4c6/ui-eindev-ir-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-ui-eindev-ir-api-6a285bb6/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_component

Get full details of a specific component including its source code, dependencies, and metadata. The component name can be discovered from search_components results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `name` | string | Yes | Component name from the registry (e.g. 'glass-card', 'glass-button', 'glass-avatar'). Available names can be found via search_components. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ui-eindev-ir-api-6a285bb6/get_component \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"name":"<string>"}'
```

### search_components

Search and list liquid glass components from the EinUI registry. Returns component metadata including name, title, description, dependencies, and file paths. Supports filtering by text query (matched against name, title, and description) and by category (matched against component name).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Category filter matched against component name (e.g. 'glass', 'widget', 'block'). Omitting returns all categories. |
| `query` | string | No | Search text to filter components. Matched case-insensitively against component name, title, and description. Omitting returns all components. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-ui-eindev-ir-api-6a285bb6/search_components \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","query":"<string>"}'
```
