# MyAnimeList Anime Search Scraper

**Use case:** 

Search MyAnimeList for any anime by keyword and export titles, scores, and details as structured data in seconds.

## Input

```json
{
  "maxItems": 5,
  "mode": "top_anime",
  "query": ""
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "titleJapanese": {
    "label": "Title Japanese",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "malId": {
    "label": "Mal Id",
    "format": "number"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "episodes": {
    "label": "Episodes",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "score": {
    "label": "Score",
    "format": "number"
  },
  "scoredBy": {
    "label": "Scored By",
    "format": "number"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "popularity": {
    "label": "Popularity",
    "format": "number"
  },
  "members": {
    "label": "Members",
    "format": "number"
  },
  "synopsis": {
    "label": "Synopsis",
    "format": "text"
  }
}
```

## About this Actor

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