> For the complete documentation index, see [llms.txt](https://docs.annict.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.annict.com/docs/ja/api/v1/series.md).

# GET /v1/series

Annictに登録されているシリーズ情報を取得することができます。

## フィールド

| 名前       | 概要          |
| -------- | ----------- |
| id       | ID          |
| name     | 名前          |
| name\_ro | 名前 (ローマ字表記) |
| name\_en | 名前 (英語表記)   |

## パラメータ

| 名前           | 概要                                                | 使用例               |
| ------------ | ------------------------------------------------- | ----------------- |
| fields       | レスポンスボディに含まれるデータのフィールドを絞り込みます。                    | fields=id,name    |
| filter\_ids  | シリーズをIDで絞り込みます。                                   | filter\_ids=1,2,3 |
| filter\_name | シリーズを名前で絞り込みます。                                   | filter\_name=株式会社 |
| page         | ページ数を指定します。                                       | page=2            |
| per\_page    | 1ページに何件取得するかを指定します。デフォルトは `25` 件で、`50` 件まで指定できます。 | per\_page=30      |
| sort\_id     | シリーズをIDで並び替えます。`asc` または `desc` が指定できます。          | sort\_id=desc     |

## リクエスト例

```
$ curl -X GET https://api.annict.com/v1/series?access_token=(access_token)&filter_ids=65
```

```javascript
{
  "series": [
    {
      "id": 65,
      "name": "ソードアート・オンライン",
      "name_ro": "Sword Art Online",
      "name_en": "Sword Art Online"
    }
  ],
  "total_count": 1,
  "next_page": null,
  "prev_page": null
}
```
