# Lucid Trading — 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.

> Access real-time information about Lucid Trading's futures prop firm challenge plans, pricing structures, funded account rules, and scaling plan details to compare trading opportunities and understand account requirements. Get comprehensive data on plan features, trading rules, and progression options to find the right funded account tier for your trading style.

**Category:** Finance & Markets | **Website:** [lucidtrading.com/#plans](https://lucidtrading.com/#plans) | **Docs:** [parse.bot/marketplace/76cde32a-a7e4-4f6e-ad8a-d49ab9039f13/lucidtrading-com-api](https://parse.bot/marketplace/76cde32a-a7e4-4f6e-ad8a-d49ab9039f13/lucidtrading-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-lucidtrading-com-api-76cde32a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_funded_rules

Retrieve funded account rules that apply after passing an evaluation. Covers payout profit targets, loss limits, consistency requirements, position sizing, and days-to-payout for LucidPro and LucidFlex plans. LucidDirect plans are already funded and their rules are included in get_plans.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `plan_type` | string | No | Filter by plan type. Only LucidPro and LucidFlex have separate funded rules (LucidDirect is already funded). |
| `size` | string | No | Filter by account size. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lucidtrading-com-api-76cde32a/get_funded_rules \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"plan_type":"<string>","size":"<string>"}'
```

### get_plans

Retrieve challenge plan details including pricing, parameters, and rules for all Lucid Trading plan types (LucidPro, LucidFlex, LucidDirect) and account sizes. Returns evaluation requirements, fee structures with current discounts, position limits, and drawdown rules. Results include both original and discounted prices based on active promotions.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `plan_type` | string | No | Filter by plan type. |
| `size` | string | No | Filter by account size. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lucidtrading-com-api-76cde32a/get_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"plan_type":"<string>","size":"<string>"}'
```

### get_scaling_plans

Retrieve scaling plan tiers showing how maximum position sizes increase as account profit grows. Each tier maps a profit range to the allowed maximum contract size. Scaling applies to funded accounts in LucidFlex.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `size` | string | No | Filter by account size. Omitting returns scaling plans for all sizes. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lucidtrading-com-api-76cde32a/get_scaling_plans \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"size":"<string>"}'
```
