Annict Docs
  • Annict Docs
  • Languages
  • Annict Docs (日本語)
    • api
      • v1
        • GET /v1/users
        • overview
        • GET /v1/episodes
        • authentication
        • GET /v1/me
        • GET /v1/series
        • GET /v1/me/programs
        • GET /v1/records
        • GET /v1/works
        • GET /v1/staffs
        • GET /v1/organizations
        • GET /v1/me/following_activities
        • GET /v1/people
        • me-records
        • GET /v1/reviews
        • GET /v1/me/works
        • GET /v1/activities
        • GET /v1/characters
        • GET /v1/followers
        • POST /v1/me/statuses
        • me-reviews
        • GET /v1/casts
        • GET /v1/following
    • Summary
  • Annict Docs (English)
Powered by GitBook
On this page
  • フィールド
  • パラメータ
  • リクエスト例

Was this helpful?

  1. Annict Docs (日本語)
  2. api
  3. v1

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
{
  "series": [
    {
      "id": 65,
      "name": "ソードアート・オンライン",
      "name_ro": "Sword Art Online",
      "name_en": "Sword Art Online"
    }
  ],
  "total_count": 1,
  "next_page": null,
  "prev_page": null
}
PreviousGET /v1/meNextGET /v1/me/programs

Last updated 4 years ago

Was this helpful?