aboutsummaryrefslogtreecommitdiff
path: root/content/docs/mal2go/v4/anime/get-seasonal-anime.md
blob: f473a0284345ffd58ee38a84dbe37d5ff60b99a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
---
title: "Get seasonal anime list"
description: "Specify an year and season to get animes from"
weight: 5
---

`GetSeasonalAnime` returns a list of animes that released in the specified season and year. Accepted arguments are:

- `year string` Is the max amount of search results to get. Max is 500.
- `season string` Is the "offset" for the search results. If offset is greater than 0 the first n number of search reults will be ignored.  
Possible seasons:
  + `winter`
  + `spring`
  + `summer`
  + `fall`
- `sort string` Wether to include NSFW rated search results  
Possible sorts:
  + `anime_score`
  + `anime_num_list_users`
- `limit int` Is the max amount of results to get. Max is 500.
- `offset int` Is the "offset" for results. If offset is greater than 0 the first n number of reults will be ignored.
- `nsfw bool` Wether to include NSFW rated results
- `fields []string` The fields to include in the response. [Here](/docs/mal2go/v4/anime/types#mal2goanimeanime) is a list of the valid fields. Just using an empty slice (`[]string{}`) will include all the fields.

Example:

``` go
package main

import (
  "github.com/MikunoNaka/MAL2Go/v4/anime"
  "log"
  "fmt"
)

func main() {
  authToken := "YOUR_TOKEN_HERE"
  myClient := anime.Client {
    AuthToken: "Bearer " + authToken,
  }
    
  year := "2022"
  season := "spring"
  sort := "anime_num_list_users"
  limit, offset := 10, 0
  nsfw := true // include NSFW results
  fields := []string{"title"}
    
  seasonalAnimes, err := myClient.GetSeasonalAnime(year, season, sort, limit, offset, nsfw, fields)
  if err != nil {
    log.Fatal(err) // remember kids, always handle errors
  }
    
  fmt.Printf("Here are some popular animes from %s, %d\n", seasonalAnimes.Season.Name, seasonalAnimes.Season.Year)
  for _, i := range seasonalAnimes.Animes {
    fmt.Println(i.Title)
  }
}
```

Above example prints 10 animes from spring 2022 with the most users.