--- title: GogoAnime | Streaming Links --- import { Tab, Tabs } from "nextra-theme-docs"; # Get Anime Episode Streaming Links Technical details regarding the usage of the get anime streaming links function for the GogoAnime provider can be found below. Example code is provided for both JavaScript and Python, along with a response schema. ## Route Schema (URL) ``` https://api.nganime.my.id/anime/gogoanime/watch/{episodeId}?server={serverName} ``` ## Path Parameters | Parameter | Type | Description | Required? | Default | | :-------: | :----: | ----------------------------------------------------------------- | :-------: | :-----: | | query | string | The search query; i.e. the title of the item you are looking for. | Yes | `""` | ## Query Parameters | Parameter | Type | Description | Required? | Default | | :-------: | :---------------------------------------------: | ------------------------------------- | :-------: | :---------: | | server | Enum: `"gogocdn"` `"streamsb"` `"vidstreaming"` | The page number of results to return. | No | `"gogocdn"` | ## Request Samples <> ```js import axios from "axios"; /* Using the example episode ID of 'spy-x-family-episode-1', explicitly defining default server for demostrative purposes. */ const url = "https://api.nganime.my.id/anime/gogoanime/watch/spy-x-family-episode-1"; const data = async () => { try { const { data } = await axios.get(url, { params: { server: "gogocdn" } }); return data; } catch (err) { throw new Error(err.message); } }; console.log(data); ``` <> ```python import requests """ Using the example episode ID of 'spy-x-family-episode-1', explicitly defining default server for demostrative purposes. """ url = "https://api.nganime.my.id/anime/gogoanime/watch/spy-x-family-episode-1" response = requests.get(url, params={"server": "gogocdn"}) data = response.json() print(data) ``` ## Response Schema **MIME Type:** `application/json` ```json copy=false { "headers": { "Referer": "string", "watchsb": "string", // or null, since only provided with server being equal to "streamsb". "User-Agent": "string" // or null }, "sources": [ { "url": "string", "quality": "string", "isM3U8": true } ] } ``` **MIME Type:** `application/json` ```json copy=false "message": {} ``` **MIME Type:** `application/json` ```json copy=false "message": {} ```