# Web3 Okx — 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.

> View OKX Web3 copy-trading leaderboards across Solana, Ethereum, BNB, Base, and X Layer, including top wallets with PnL, ROI, win rate, transaction counts, volume, and top tokens for selected time periods.

**Category:** Web3 & Onchain | **Website:** [web3.okx.com/](https://web3.okx.com/) | **Docs:** [parse.bot/marketplace/13a66ace-561e-479d-86c7-90b87251bc6b/web3-okx-com-api](https://parse.bot/marketplace/13a66ace-561e-479d-86c7-90b87251bc6b/web3-okx-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-web3-okx-com-api-13a66ace/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_chains

Get copy trading leaderboard from all supported blockchain networks (solana, ethereum, bnb, base, xlayer). Returns traders grouped by chain, each ranked by PnL. Useful for cross-chain comparison of top trader performance. Internally fetches each chain's leaderboard and aggregates results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `max_results` | integer | No | Maximum traders per chain to return (1-1000). |
| `period` | string | No | Time period for performance metrics. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-web3-okx-com-api-13a66ace/get_all_chains \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"max_results":"<integer>","period":"<string>"}'
```

### get_leaderboard

Get copy trading leaderboard for a specific blockchain network. Returns trader data ranked by PnL, including wallet addresses, performance metrics, labels, and top tokens traded. Supports solana, ethereum, bnb, base, and xlayer chains with configurable time periods (24H, 7D, 30D, 90D). The scraper handles internal pagination against the upstream API and returns up to max_results traders in a single response.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `chain` | string | No | Blockchain network. |
| `max_results` | integer | No | Maximum number of traders to return (1-1000). |
| `period` | string | No | Time period for performance metrics. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-web3-okx-com-api-13a66ace/get_leaderboard \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"chain":"<string>","max_results":"<integer>","period":"<string>"}'
```
