KissKH Provider

Provider for kisskh.dk, covering latest releases, popular series, gennres, search, detailed series metadata, and streaming embed extraction.

Home

Fetch latest releases, recommendations by genre, and popular series (weekly/monthly/alltime).

GET /v1/kisskh/home?api_key=YOUR_KEY
Response Schema
{
  "success": true,
  "data": {
    "latest_releases": [{
      "title": "string",
      "id": "string",
      "link": "string",
      "image": "string",
      "episode": "string",
      "status": "string",
      "sub": "string"
    }],
    "recommendations": [{
      "genre": "string",
      "series": [{ "title": "string", "id": "string", "image": "string" }]
    }],
    "popular": {
      "weekly": [{ "title": "string", "id": "string", "image": "string" }],
      "monthly": [ ... ],
      "alltime": [ ... ]
    }
  }
}

Series Info

Full series metadata including genres, cast, director, network, country, and complete episode list.

GET /v1/kisskh/info?api_key=YOUR_KEY&id=the-wonderfools-2026
Parameter Type Required
idstringYes
Response Schema
{
  "success": true,
  "data": {
    "title": "string",
    "id": "string",
    "synopsis": "string",
    "release_year": "string",
    "status": "string",
    "genres": ["string"],
    "cast": ["string"],
    "director": "string",
    "network": "string",
    "country": "string",
    "episode_count": 8,
    "episodes": [{
      "title": "string",
      "id": "string",
      "link": "string"
    }]
  }
}

Stream

Extract the streaming embed URL for a given episode.

GET /v1/kisskh/stream?api_key=YOUR_KEY&episode_id=the-wonderfools-episode-1
Parameter Type Required
episode_idstringYes
Response Schema
{
  "success": true,
  "data": {
    "embed_url": "string (dramavideo.se iframe source)",
    "episode_id": "string"
  }
}