Skip to content

Error: Request failed with status code 404 #556

Discussion options

You must be logged in to vote

This request should be either:

// Search all anime that has `Naruto` in its slug, title or synopsis
kitsu.get('anime', { 
  filter: {
    text: 'Naruto'
  }
}).then(anime=>{
  console.log(anime)
})
// Get anime with the 'naruto' slug (https://kitsu.io/anime/naruto)
kitsu.get('anime', { 
  filter: {
    slug: 'Naruto'
  }
}).then(anime=>{
  console.log(anime)
})

Check kitsu's API documentation at https://github.com/wopian/kitsu/tree/master/packages/kitsu#get and kitsu.io's API documentation at https://hummingbird-me.github.io/api-docs/#tag/Anime/paths/~1anime/get

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by wopian
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
2 participants
Converted from issue

This discussion was converted from issue #555 on June 09, 2021 02:43.