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

> Track upcoming token unlocks across DeFi protocols to monitor release dates, unlock values, supply percentages, and allocation categories that could impact token prices and market dynamics. Stay informed about which protocols have scheduled unlocks coming up so you can anticipate potential market movements and adjust your investment strategy accordingly.

**Category:** Web3 & Onchain | **Website:** [defillama.com/unlocks](https://defillama.com/unlocks) | **Docs:** [parse.bot/marketplace/c6439e77-3dcf-42d9-864f-bd52474eb12b/defillama-com-api](https://parse.bot/marketplace/c6439e77-3dcf-42d9-864f-bd52474eb12b/defillama-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-defillama-com-api-c6439e77/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_protocol_unlocks

Retrieves detailed token unlock information for a specific protocol, including all upcoming unlock events with their dates, token amounts, allocation categories, and unlock types. Also includes current market data, total locked tokens, and token allocation breakdown by category.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `protocol_slug` | string | Yes | Protocol identifier slug as used on DefiLlama (e.g. 'aptos', 'arbitrum', 'chainlink', 'celestia'). Obtainable from get_upcoming_unlocks results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-defillama-com-api-c6439e77/get_protocol_unlocks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"protocol_slug":"<string>"}'
```

### get_upcoming_unlocks

Retrieves a list of upcoming token unlock events across all tracked protocols, sorted by next unlock date. Each entry includes the token name, symbol, unlock date, unlock value in USD, percentage of circulating and max supply being unlocked, and the allocation category. Results are auto-iterated; pass limit to cap total items returned.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of unlock events to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-defillama-com-api-c6439e77/get_upcoming_unlocks \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```
