# Mobbin — 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 explore thousands of UI/UX design flows from Mobbin across mobile and web platforms, with detailed screenshots and categorized collections. Discover specific flow details, browse by category, and find design inspiration tailored to your needs.

**Category:** Developer Tools | **Website:** [mobbin.com/](https://mobbin.com/) | **Docs:** [parse.bot/marketplace/083a0d91-d41d-49cc-97d3-c7b80e3a7afa/mobbin-com-api](https://parse.bot/marketplace/083a0d91-d41d-49cc-97d3-c7b80e3a7afa/mobbin-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-mobbin-com-api-083a0d91/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_flow_details

Get individual flows within a specific flow action category. Returns detailed flow information including app name, screenshots, screen patterns, and screen elements. Currently only reliable for the web platform.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `flow_action` | string | Yes | Flow action slug (e.g., 'logging-in', 'editing-profile', 'adding-to-cart-bag'). Use list_flows to discover available slugs. |
| `platform` | string | No | Platform type. Accepted values: 'mobile', 'web'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mobbin-com-api-083a0d91/get_flow_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"flow_action":"<string>","platform":"<string>"}'
```

### list_flows

List all flow categories and their flow types for a given platform. Returns categories (e.g., Account Management, Commerce & Finance) with flow type tags, counts, slugs, and preview screenshots. The web platform provides full category data with flow counts; the mobile platform provides a flat list of available flow types.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `platform` | string | No | Platform type. Accepted values: 'mobile', 'web'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mobbin-com-api-083a0d91/list_flows \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"<string>"}'
```

### search_flows

Search for flow types by keyword across all categories. Performs case-insensitive substring matching against flow tag names and category titles. Returns matching flow types with their slugs for use with get_flow_details.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `platform` | string | No | Platform type. Accepted values: 'mobile', 'web'. |
| `query` | string | Yes | Search keyword to match as a substring against flow tags and category names (case-insensitive). Example: 'log' matches 'Logging In', 'Logging Out'. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-mobbin-com-api-083a0d91/search_flows \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"platform":"<string>","query":"<string>"}'
```
