# Bearish Crypto News Scraper

**Use case:** 

Export CryptoPanic's community-voted Bearish tab as a sentiment dataset — the headlines the crowd voted negative for the market, ranked by accumulated votes rather than by date. Each row carries the negative and positive vote counts plus PanicScore. The ranking is all-time, so this is an archive: in testing every row carried votes and the median story was about eleven months old.

## Input

```json
{
  "filter": "bearish",
  "kind": "all",
  "coins": [],
  "language": "en",
  "maxItems": 300
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "sourceTitle": {
    "label": "Source",
    "format": "text"
  },
  "coins": {
    "label": "Coins",
    "format": "array"
  },
  "kind": {
    "label": "Type",
    "format": "text"
  },
  "filter": {
    "label": "Category",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "text"
  },
  "panicScore": {
    "label": "PanicScore",
    "format": "number"
  },
  "votesPositive": {
    "label": "Bullish",
    "format": "number"
  },
  "votesNegative": {
    "label": "Bearish",
    "format": "number"
  },
  "commentsCount": {
    "label": "Comments",
    "format": "number"
  },
  "newsUrl": {
    "label": "Article",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [CryptoPanic News Scraper](https://apify.com/solidcode/cryptopanic-news-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/solidcode/cryptopanic-news-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/solidcode/cryptopanic-news-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
