# Yeesuan — 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 discover computing applications, hardware products, and solution strategies available on the YeeSuan cloud platform. Browse through their catalog to find the software tools, physical products, and implementation solutions that match your computing needs.

**Category:** Developer Tools | **Website:** [yeesuan.com/](https://yeesuan.com/) | **Docs:** [parse.bot/marketplace/24811279-231c-457d-9665-fa978d5e2dfd/yeesuan-com-api](https://parse.bot/marketplace/24811279-231c-457d-9665-fa978d5e2dfd/yeesuan-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-yeesuan-com-api-24811279/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_products

List all computing power hardware products available on the platform. Returns all visible products with their specifications, pricing, and usage statistics. No pagination needed as the full product catalog is returned in one call (typically under 50 products).

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yeesuan-com-api-24811279/list_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_solutions

List all solution strategies and service plans offered by the platform. Returns solutions covering areas like software optimization, AI computing, HPC, parallel computing, and industry-specific applications.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yeesuan-com-api-24811279/list_solutions \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_apps

Search computing software applications in the app store. Returns paginated results with application details including name, pricing, and usage statistics. Supports keyword search by application name. When page_num and page_size are omitted, defaults to page 1 with 20 results per page.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `app_name` | string | No | Search keyword to filter applications by name (e.g. 'VASP', 'DeepSeek'). Omitting returns all apps. |
| `page_num` | integer | No | Page number for pagination, starting at 1. |
| `page_size` | integer | No | Number of results per page (1-50). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-yeesuan-com-api-24811279/search_apps \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"app_name":"<string>","page_num":"<integer>","page_size":"<integer>"}'
```
