--- title: "Delete Anime" description: "Delete an anime from the user's animelist" weight: 3 --- Use the `DeleteAnime` method to remove an entry from the user's animelist. This method takes these arguments: - `id int` ID of the anime Example: ``` go package main import ( "github.com/MikunoNaka/MAL2Go/v4/user/anime" "log" "fmt" ) func main() { authToken := "YOUR_TOKEN_HERE" myClient := anime.Client { AuthToken: "Bearer " + authToken, } res, err := myClient.DeleteAnime(50172) if err != nil { log.Fatal(err) } if res == "200" { fmt.Println("Anime successfully deleted from your list") } else { fmt.Println("Something went wrong. Is the anime even in your list?") } } ``` The above example deletes "Summertime Render" from your list This method returns `"200"` on a successful attempt in deleting the anime from your list. It returns `"404"` if the anime is not in your list.