MultiDebrid
Developer platform

Build with the MultiDebrid API.

Use a consistent REST interface, Bearer authentication and predictable JSON responses for supported-host tools and premium link workflows.

Code examples

cURL

curl -X GET "https://multidebrid.com/api/v1/account" \
  -H "Authorization: Bearer YOUR_API_KEY"

PHP

$ch = curl_init("https://multidebrid.com/api/v1/hosts");
curl_setopt_array($ch, [
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_HTTPHEADER => ["Authorization: Bearer YOUR_API_KEY"]
]);
$response = curl_exec($ch);

JavaScript (server runtime)

const response = await fetch("https://multidebrid.com/api/v1/usage", {
  headers: { Authorization: "Bearer YOUR_API_KEY" }
});
const payload = await response.json();

Python

import requests
response = requests.get(
    "https://multidebrid.com/api/v1/history?limit=25",
    headers={"Authorization": "Bearer YOUR_API_KEY"},
    timeout=30,
)
print(response.json())
WhatsApp SupportOnline now