---
title: VVS Finance API on Cronos: pools and swaps | DexPaprika
description: Pools, swaps, prices and OHLCV for VVS Finance on Cronos, both the classic AMM and VVS V3, over REST. Free API key, no credit card.
url: https://dexpaprika.com/api/cronos/vvs
type: api-dex
---

# VVS Finance API on Cronos

> **Quick links**: [Pricing](https://dexpaprika.com/api/pricing) | [Developer console](https://console.dexpaprika.com) | [API documentation](https://docs.dexpaprika.com) | [Cronos DEX Data API](https://dexpaprika.com/api/cronos)

VVS Finance runs two pool types on Cronos: the classic AMM, indexed as vvs, and V3 concentrated liquidity, indexed as vvs_v3.

## VVS Finance on Cronos at a glance

- **830+** active pools
- **$1.9M** volume, 24h
- **20,935** transactions, 24h

Data as of 2026-09-17 15:23 UTC, source: /networks/cronos/dexes

## VVS classic and V3 in one API

| Version | dex_id | factory_id | Volume, 24h |
|---|---|---|---|
| VVS Finance | `vvs` | `0x3b44b2a187a7b3824131f8db5a74194d0a42fc15` | $1.2M |
| VVS Finance V3 | `vvs_v3` | `0x40ab11c64e9ff5368f09343ac860dafa34e14c35` | $751,456.24 |

## Top VVS Finance pools on Cronos by 24h volume

| Pair | Version | Volume, 24h | Liquidity | Pool |
|---|---|---|---|---|
| WCRO/USDC | VVS Finance | $442,710.24 | $5.8M | [`0xe61d…b6d6`](https://dexpaprika.com/cronos/pool/0xe61db569e231b3f5530168aa2c9d50246525b6d6) |
| USDC/WCRO | VVS Finance V3 | $367,527.62 | $152,840.11 | [`0xdfb4…5631`](https://dexpaprika.com/cronos/pool/0xdfb44dbf836967994b2de2bd7865bc32360c5631) |
| USDC/USDC | VVS Finance V3 | $253,386.93 | $989,067.75 | [`0xe384…a629`](https://dexpaprika.com/cronos/pool/0xe3842941fea3ea1490696ab74640e263101da629) |
| WCRO/RACECAT | VVS Finance | $138,705.63 | $28,056.87 | [`0x779e…1646`](https://dexpaprika.com/cronos/pool/0x779ea47b097843cb92748d8a3797d560d56c1646) |
| 212/WCRO | VVS Finance | $77,130.37 | $81,565.59 | [`0x1a83…4eef`](https://dexpaprika.com/cronos/pool/0x1a835ecd565fbef0b01ef21d28b61aeb5f9c4eef) |
| WBTC/WCRO | VVS Finance | $70,937.75 | $2.0M | [`0x8f09…d6d7`](https://dexpaprika.com/cronos/pool/0x8f09fff247b8fdb80461e5cf5e82dd1ae2ebd6d7) |
| WCRO/WETH | VVS Finance | $48,979.01 | $1.2M | [`0xa111…39f9`](https://dexpaprika.com/cronos/pool/0xa111c17f8b8303280d3eb01bbcd61000aa7f39f9) |
| USDT/USDC | VVS Finance V3 | $47,476.28 | $36,572.95 | [`0x0438…2e93`](https://dexpaprika.com/cronos/pool/0x0438a75009519f6284fa9e050e54d940302b2e93) |
| WCRO/USDC | VVS Finance V3 | $20,010.13 | $140,744.55 | [`0x6725…b625`](https://dexpaprika.com/cronos/pool/0x67255a0ab5add6d65045e6e855842ca8b8a2b625) |
| VVS/WCRO | VVS Finance V3 | $14,830.62 | $124,713.46 | [`0x9d96…5acf`](https://dexpaprika.com/cronos/pool/0x9d96706f31f520cb2404a3d2ad1a932b61a85acf) |

## Your first VVS Finance call

```bash
# top VVS Finance pools by 24h volume
curl "https://api.dexpaprika.com/networks/cronos/pools/search?dex_name=vvs&order_by=volume_usd_24h&sort=desc&limit=5"

# newest transactions through one pool
curl "https://api.dexpaprika.com/networks/cronos/pools/0xe61db569e231b3f5530168aa2c9d50246525b6d6/transactions?limit=5"
```

Newest swap through the busiest VVS Finance pool at 2026-09-17 15:23 UTC, trimmed to ten fields:

```json
{
  "id": "0xe671d9f0f5e490a59bd4913454b69a768bbe7e512eacd1c97e248a45feac9522",
  "pool_id": "0xe61db569e231b3f5530168aa2c9d50246525b6d6",
  "factory_id": "0x3b44b2a187a7b3824131f8db5a74194d0a42fc15",
  "token_0_symbol": "WCRO",
  "token_1_symbol": "USDC",
  "volume_0": 23527.142125646573,
  "volume_1": 1352.375985,
  "price_0_usd": 0.057717738390858975,
  "created_at_block_number": 94492854,
  "created_at": "2026-09-17T15:19:49Z"
}
```

## Endpoints that answer for VVS Finance

| Endpoint | Returns | Docs |
|---|---|---|
| `GET /networks/cronos/pools/search?dex_name=vvs` | VVS Finance pools, sorted and filtered by volume, liquidity, transactions or age. Swap in vvs_v3 for the other versions. | [Reference](https://docs.dexpaprika.com/api-reference/pools/advanced-pool-filtering-on-a-specific-network) |
| `GET /networks/cronos/pools/{address}` | Liquidity, reserves, pricing and metadata for one pool. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-a-pool-on-a-network) |
| `GET /networks/cronos/pools/{address}/transactions` | Recent swaps, liquidity adds and removes for a pool, with token symbols and USD prices. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-transactions-of-a-pool-on-a-network-paging-can-be-used-up-to-100-pages) |
| `GET /networks/cronos/pools/{address}/ohlcv` | Candles for a pool at intervals from 1 minute to 24 hours. | [Reference](https://docs.dexpaprika.com/api-reference/pools/get-ohlcv-data-for-a-pool-pair) |
| `GET /networks/cronos/tokens/{address}` | Latest price, metadata and summary metrics for one token. | [Reference](https://docs.dexpaprika.com/api-reference/tokens/get-a-tokens-latest-data-on-a-network) |
| `GET /networks/cronos/dexes` | Every DEX on Cronos, with each VVS Finance version as its own entry. | [Reference](https://docs.dexpaprika.com/api-reference/dexes/get-a-list-of-available-dexes-on-a-network) |
| `SSE /sse/transactions` | Swaps on a pool or token, pushed as they land. In preview. | [Reference](https://docs.dexpaprika.com/streaming/transactions-streaming) |

## What it costs

- **Free**: a free API key, no credit card. Data can run a short way behind the chain.
- **Paid plans**: real-time data, higher request ceilings and dedicated hosts.

Current quotas and rates: [API pricing](https://dexpaprika.com/api/pricing)

## Frequently asked questions

### Do I need an API key to query VVS Finance data?

A free API key is the place to start. It needs no credit card and works on every endpoint on this page: register one at console.dexpaprika.com. Current quotas are on the pricing page.

### Which VVS Finance version is a swap from?

Read factory_id on the transaction row: 0x3b44…fc15 is VVS Finance and 0x40ab…4c35 is VVS Finance V3. Pool records carry dex_id directly: vvs is VVS Finance and vvs_v3 is VVS Finance V3.

### How do I list only VVS Finance pools on Cronos?

Call /networks/cronos/pools/search with dex_name=vvs, then with dex_name=vvs_v3 for the other versions. Add order_by=volume_usd_24h to get the busiest first.

### How fresh is the VVS Finance data?

On the free plan, data can run a short way behind the chain. Paid plans serve it in real time. The figures on this page were read from the API at 2026-09-17 15:23 UTC.

### What counts as one request?

One call is one credit, including a call that returns many rows. Batch endpoints bill per item. Each streaming update also counts as one.

### Can I stream VVS Finance swaps instead of polling?

Streaming over server-sent events is in preview. /sse/transactions pushes swaps on a pool or token as they land. Access is described at docs.dexpaprika.com/streaming/showcase-streams, and a running price stream is on dexpaprika.com/streaming/cronos.

### How do I send my key once I have one?

Put the key in the Authorization header on its own, with nothing in front of it.

### Which host do I call?

api.dexpaprika.com with a free key. Pro and Enterprise keys go to api-pro.dexpaprika.com.

## Related

- [Cronos DEX Data API](https://dexpaprika.com/api/cronos)
- [Live Cronos streaming](https://dexpaprika.com/streaming/cronos)
- [API documentation](https://docs.dexpaprika.com)
- [AI agents and skills](https://agents.dexpaprika.com)

---
*Data provided by DexPaprika | Page: VVS Finance API on Cronos | Data as of 2026-09-17 15:23 UTC*
