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

> Access real-time cryptocurrency market sentiment data from CryptoPanic. Retrieve news posts filtered by bullish or bearish sentiment, browse the full news feed with flexible filters, and fetch an aggregated sentiment score derived from 24-hour price movements across top cryptocurrencies.

**Category:** Web3 & Onchain | **Website:** [cryptopanic.com/](https://cryptopanic.com/) | **Docs:** [parse.bot/marketplace/3a8724f0-e353-463d-869e-bd5830125a7c/cryptopanic-com-api](https://parse.bot/marketplace/3a8724f0-e353-463d-869e-bd5830125a7c/cryptopanic-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-cryptopanic-com-api-3a8724f0/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_bearish_posts

Convenience endpoint for news posts with bearish sentiment.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | No | Filter by currency code (e.g., BTC) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cryptopanic-com-api-3a8724f0/get_bearish_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>"}'
```

### get_bullish_posts

Convenience endpoint for news posts with bullish sentiment.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | No | Filter by currency code (e.g., BTC) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cryptopanic-com-api-3a8724f0/get_bullish_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>"}'
```

### get_posts

Retrieve a list of news posts from CryptoPanic. Supports filtering by sentiment type, currency, and panic score period.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `currency` | string | No | Filter by currency code (e.g., BTC, ETH) |
| `filter` | string | No | Filter by type: bullish, bearish, hot, rising, important, lol, saved |
| `panic_period` | string | No | Include panic score for period: 1h, 6h, 24h |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cryptopanic-com-api-3a8724f0/get_posts \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"currency":"<string>","filter":"<string>","panic_period":"<string>"}'
```

### get_sentiment_score

Calculate a real-time market sentiment score (0-100) based on 24-hour price changes of top cryptocurrencies. A score of 50 is neutral, above 50 is bullish, below 50 is bearish. Returns the score, a human-readable label, the average 24h price change, and a summary of individual cryptocurrency performance.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-cryptopanic-com-api-3a8724f0/get_sentiment_score \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
