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

> Discover real-time crypto arbitrage opportunities and funding rate differentials across multiple exchanges to identify profitable trading spreads instantly. Monitor top-performing deals from the last 24 hours and track live market performance statistics to optimize your trading strategy.

**Category:** Web3 & Onchain | **Website:** [uniqum.io/](https://uniqum.io/) | **Docs:** [parse.bot/marketplace/cb55900a-faae-49a5-918d-99916d05d7c8/uniqum-io-api](https://parse.bot/marketplace/cb55900a-faae-49a5-918d-99916d05d7c8/uniqum-io-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-uniqum-io-api-cb55900a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_funding_rates

Returns funding rate data across all monitored futures exchanges, sorted by cross-exchange delta. Each item includes the asset, best funding rate delta between exchanges, and per-exchange funding rate details including next funding time. Supports filtering by exchange and symbol.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `exchanges` | string | No | Comma-separated list of exchange identifiers to filter by (e.g. binance_f,bybit_f,mexc_f). Available exchanges: aster_f, binance_f, bingx_f, bybit_f, hyperliquid_f, lighter_f, mexc_f, okx_f. |
| `limit` | integer | No | Maximum number of results to return per page. |
| `offset` | integer | No | Number of items to skip for pagination. |
| `sort_by` | string | No | Field to sort results by. |
| `sort_dir` | string | No | Sort direction. |
| `symbols` | string | No | Comma-separated list of asset symbols to filter by (e.g. BTC,ETH,SOL). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-uniqum-io-api-cb55900a/get_funding_rates \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"exchanges":"<string>","limit":"<integer>","offset":"<integer>","sort_by":"<string>","sort_dir":"<string>","symbols":"<string>"}'
```

### get_live_arbitrage

Returns the current top arbitrage opportunities ranked by spread percentage in real time. Each signal includes the trading pair, buy/sell exchanges, spread percentage, estimated profit in USD, and volume. Top entries may have pair/exchange names redacted for non-authenticated users.

**Estimated cost:** Metered

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

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

### get_market_overview

Returns 24-hour market overview statistics including total spread count, signal count, estimated profit, average ROI, and a list of all monitored exchanges with their active ticker counts. No parameters required.

**Estimated cost:** Metered

_No parameters required._

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

### get_top_deals_24h

Returns the highest-ROI arbitrage deals detected in the last 24 hours. Each deal includes the trading pair, buy/sell exchange identifiers, spread percentage, profit in USD, volume, and timestamp. Exchange names may be redacted for non-authenticated users.

**Estimated cost:** Metered

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

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