> ## Documentation Index
> Fetch the complete documentation index at: https://docs.inkyswap.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Recent V2 Launches

> Read newly indexed V2 launches with cursor-like offset pagination.

## Query parameters

<ParamField query="chainId" type="number" required>
  `57073` for Ink or `4663` for Robinhood.
</ParamField>

<ParamField query="limit" type="number" default="10">
  Number of rows. Minimum `1`, maximum `50`.
</ParamField>

<ParamField query="offset" type="number" default="0">
  Zero-based offset.
</ParamField>

## Response

```json theme={null}
{
  "chainId": 57073,
  "tokens": [],
  "nextOffset": null
}
```

`nextOffset` is the next offset when a full page was returned; otherwise it is `null`.

```bash theme={null}
curl "https://inkypump.com/api/tokens/recent-v2?chainId=57073&limit=20&offset=0"
```

The token objects include identity, launch fields, indexed metrics, and xStocks quote data where applicable. Fields may be additive. Keep exact strings and nullable fields intact.

This endpoint is useful for discovery. It is not a transaction-status endpoint. After your own launch, prove the receipt first, then query `GET /api/token` by the emitted address.
