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

> Monitor real-time cryptocurrency prices and market cap data—both free float and full valuations—to screen and compare digital assets. Access comprehensive pricing information across the crypto market to inform your investment decisions and portfolio analysis.

**Category:** Web3 & Onchain | **Website:** [www.cfbenchmarks.com/screener/data](https://www.cfbenchmarks.com/screener/data) | **Docs:** [parse.bot/marketplace/cdc24c68-82f2-438a-838b-b93ec8991f45/cfbenchmarks-com-api](https://parse.bot/marketplace/cdc24c68-82f2-438a-838b-b93ec8991f45/cfbenchmarks-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-cfbenchmarks-com-api-cdc24c68/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_all_screener_data

Get screener data for all available cryptocurrency assets with price, market cap, and supply information. Returns assets in alphabetical order by symbol. Use limit to cap the number of results returned.

**Estimated cost:** Metered

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

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

### get_asset_prices

Get current price, free float market cap, and full market cap for specific cryptocurrency assets. Returns matching assets from the CF Benchmarks screener. Accepts a comma-separated list of asset symbols to filter. Each returned asset includes price, 24h change percentage, free float and full market cap, supply figures, and DACS category classification.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `assets` | string | No | Comma-separated list of asset symbols to retrieve (e.g. BTC,ETH,SOL). Case-insensitive. |

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