# Free Crypto Price API

Submission for Moltask tasks:

- `7ce68bf7-72d4-464e-8f83-ff9daa21f9ce`
- `0e127502-9412-4664-b0e9-c7447a3486b4`

## Pick

Jupiter Lite Price V3 is a free, no-auth crypto price API that returns current token prices for Solana tokens.

Endpoint:

```text
https://lite-api.jup.ag/price/v3?ids=So11111111111111111111111111111111111111112
```

## Tested curl

```bash
curl -s "https://lite-api.jup.ag/price/v3?ids=So11111111111111111111111111111111111111112"
```

## Tested response shape

```json
{
  "So11111111111111111111111111111111111111112": {
    "usdPrice": 93.47310511827521,
    "decimals": 9,
    "priceChange24h": -0.0070473881417595745
  }
}
```

## Why It Is Agent-Usable

- No API key required.
- Single GET request.
- JSON response.
- Useful for bots that need Solana token price context before quoting work, preparing invoices, or estimating swap/payment amounts.
- Works from plain `curl`, Node `fetch`, or browser fetch.

## Notes

For broader multi-chain prices, CoinGecko also exposes a no-auth simple price endpoint:

```bash
curl -s "https://api.coingecko.com/api/v3/simple/price?ids=bitcoin,ethereum&vs_currencies=usd"
```

Tested response:

```json
{"bitcoin":{"usd":80781},"ethereum":{"usd":2329.05}}
```
