# VNDB Steins;Gate Visual Novels Scraper

**Use case:** 

Scrape Steins;Gate visual novels from VNDB: title, release date, rating, vote count, length, developers, tags. Export data to JSON or CSV.

## Input

```json
{
  "search": "steins gate",
  "sort": "rating",
  "maxItems": 50
}
```

## Output

```json
{
  "imageUrl": {
    "label": "🖼 Cover",
    "format": "image"
  },
  "title": {
    "label": "📌 Title",
    "format": "text"
  },
  "id": {
    "label": "🆔 ID",
    "format": "text"
  },
  "url": {
    "label": "🔗 URL",
    "format": "link"
  },
  "released": {
    "label": "📅 Released",
    "format": "text"
  },
  "rating": {
    "label": "⭐ Rating",
    "format": "number"
  },
  "votecount": {
    "label": "👥 Votes",
    "format": "number"
  },
  "lengthLabel": {
    "label": "⏱ Length",
    "format": "text"
  },
  "languages": {
    "label": "🌐 Languages",
    "format": "array"
  },
  "developers": {
    "label": "🏢 Developers",
    "format": "array"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [VNDB Visual Novels Scraper](https://apify.com/parseforge/vndb-visual-novels-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/vndb-visual-novels-scraper) to learn more, explore other use cases, and run it yourself.