Dramacool9 Provider

API for dramacool9.com.ro — Kdramas, K-shows, search, details, streaming links, and filtered discovery.

Home

Fetch drama and K-show listings from the homepage, plus ongoing series and discovery filter metadata.

GET /v1/dramacool9/home?api_key=YOUR_KEY
Response Schema
{
  "success": true,
  "data": {
    "drama": [{
      "title": "string",
      "id": "string",
      "image": "string | null",
      "episode": "string | null",
      "time": "string | null"
    }],
    "kshow": [ ... ],
    "ongoing": [{
      "title": "string",
      "id": "string"
    }],
    "countries": [{
      "name": "string",
      "slug": "string"
    }],
    "genres": [{ "name": "string", "slug": "string" }]
  }
}

Details & Info

Retrieve drama metadata including synopsis, genres, cast, and a complete episode list. Scraped from the first episode page since this site embeds details there.

GET /v1/dramacool9/info?api_key=YOUR_KEY&id=vincenzo-2021
Parameter Type Required
idstringYes
Response Schema
{
  "success": true,
  "data": {
    "title": "string | null",
    "thumbnail": "string | null",
    "synopsis": "string | null",
    "other_name": "string | null",
    "country": "string | null",
    "status": "string | null",
    "release_year": "string | null",
    "genres": ["string"],
    "starring": ["string"],
    "trailer": "string | null",
    "episodes": [{
      "title": "string",
      "episode_id": "string",
      "time": "string | null"
    }]
  }
}

Stream / Episode

Fetch streaming embeds and attempt m3u8 extraction for a specific episode.

GET /v1/dramacool9/stream?api_key=YOUR_KEY&episode_id=vincenzo-2021-episode-1
Parameter Type Required
episode_idstringYes
Response Schema
{
  "success": true,
  "data": {
    "title": "string",
    "thumbnail": "string | null",
    "servers": {
      "Fast Server": {
        "embeded_link": "string",
        "m3u8": false,
        "embed_only": true
      }
    },
    "navigation": {
      "prev": "string | null",
      "next": "string | null"
    }
  },
  "episode_url": "string",
  "has_m3u8": false
}

List & Browse

Browse dramas filtered by country or genre with pagination.

GET /v1/dramacool9/list?api_key=YOUR_KEY&country=south-korea&page=1
Parameter Type Required
countrystringNo
genrestringNo
pagenumberNo
Response Schema
{
  "success": true,
  "data": [{
    "title": "string",
    "id": "string",
    "image": "string | null",
    "episode": "string | null",
    "time": "string | null"
  }],
  "pagination": {
    "nextpage": true,
    "prevpage": false,
    "maxpage": 10
  }
}

Discover & Popular

Filtered discovery and popular dramas list with available filter metadata.

Popular Dramas

GET /v1/dramacool9/popular?api_key=YOUR_KEY&page=1

Filtered Discovery

GET /v1/dramacool9/discover?api_key=YOUR_KEY&country=south-korea&genre=comedy&page=1
Parameter Type Required
countrystringNo
genrestringNo
pagenumberNo

Discovery Filters Reference

GET /v1/dramacool9/discover-info?api_key=YOUR_KEY
Response Schema
{
  "success": true,
  "data": {
    "countries": [
      { "name": "South Korea", "slug": "south-korea" },
      ...
    ],
    "genres": [
      { "name": "Comedy", "slug": "comedy" },
      ...
    ]
  }
}