# Investorgain — 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.

> Get live IPO Grey Market Premium (GMP) lists from InvestorGain, including high-GMP upcoming/open IPOs and IPOs closing in the future with their close dates.

**Category:** Finance & Markets | **Website:** [investorgain.com/](https://investorgain.com/) | **Docs:** [parse.bot/marketplace/2e839793-c601-4e41-86c2-1e5532b66d5a/investorgain-com-api](https://parse.bot/marketplace/2e839793-c601-4e41-86c2-1e5532b66d5a/investorgain-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-investorgain-com-api-2e839793/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_gmp_badge_filtered

Returns IPOs with badge 'U' (Upcoming) or 'O' (Open), optionally filtered by minimum GMP percentage, sorted by GMP descending. Returns an empty array when no IPOs match the filter criteria.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `min_gmp` | number | No | Minimum GMP percentage to include. Default 0 returns all upcoming/open IPOs. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-investorgain-com-api-2e839793/get_gmp_badge_filtered \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"min_gmp":"<number>"}'
```

### get_gmp_by_close_date

Returns IPOs with close date in the future, optionally filtered by minimum GMP percentage, sorted by GMP descending. IPOs without a close date are excluded. Returns an empty array when no IPOs match the filter criteria.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `min_gmp` | number | No | Minimum GMP percentage to include. Default 0 returns all IPOs with future close dates. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-investorgain-com-api-2e839793/get_gmp_by_close_date \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"min_gmp":"<number>"}'
```

### get_live_gmp

Returns all live IPO GMP rows from the InvestorGain table, sorted by GMP percentage descending. Each row represents one IPO currently tracked with its grey market premium, status, pricing, and listing performance data. Results are a single page of all currently tracked IPOs (typically 25-30).

**Estimated cost:** Metered

_No parameters required._

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