🚧 The Consumet documentation is undergoing reconstruction. Please be patient for all providers to be fully-documented. 🚧
API
Movies
Turkish123
Get Media Info

Get Media Info

Technical details regarding the usage of the get media info function for the Turkish123 provider can be found below. Example code is provided for both JavaScript and Python, along with a response schema.

Route Schema (URL)

https://api.consumet.org/movies/turkish123/info?id={id}

Query Parameters

ParameterTypeDescriptionRequired?Default
idstringThe Turkish123 ID of the drama; i.e. provided by searching for said drama and selecting the correct one.Yes

Request Samples

import axios from "axios";
 
// Using the example ID "erkenci-kus".
const url = "https://api.consumet.org/movies/turkish123/info";
const data = async () => {
    try {
        const { data } = await axios.get(url, { params: { id: "erkenci-kus" } });
        return data;
    } catch (err) {
        throw new Error(err.message);
    }
};
 
console.log(data);

Response Schema

MIME Type: application/json

{
  "id": "string",
  "title": "string",
  "url": "string",
  "image": "string",
  "description": "string",
  "type": "string",
  "releaseDate": "string",
  "episodes": [
    {
      "id": "string",
      "title": "string",
      "number": 0,
      "url": "string"
    }
  ]
}