# 📦 m2h-terabox

A simple Terabox video downloader using RapidAPI. No scraping required.

---

## 💻 Example Code

```js
const { getTeraboxDownloadLink } = require('m2h-terabox');

getTeraboxDownloadLink("https://terabox.com/s/1ABCXYZ")
  .then(data => console.log(data))
  .catch(err => console.error(err));
