API Reference

A simple, dynamic guide to integrating Vexx synthesis tools into your workflow.

Base URL https://myapi.pro.bd/api/v1

Authentication

Authenticated requests require an API key from your dashboard.

x-api-key: your_api_key_here

Endpoints

POST /api/v1/facebook Facebook

Download videos from Facebook using an external high-speed provider.

Parameters

url url Required

The full URL of the Facebook video (e.g., https://www.facebook.com/reel/...)

Example

curl -X POST "https://myapi.pro.bd/api/v1/facebook?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"..."}'
POST /api/v1/instagram Instagram

Download Reels, Videos, and Photos from Instagram using high-speed Gramfetchr bypass.

Parameters

url url Required

The full URL of the Instagram post (e.g., https://www.instagram.com/reel/...)

Example

curl -X POST "https://myapi.pro.bd/api/v1/instagram?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"..."}'
POST /api/v1/tiktok TikTok

Download videos and images from TikTok using ChocoMilk provider.

Parameters

url url Required

The full URL of the TikTok video or photo.

Example

curl -X POST "https://myapi.pro.bd/api/v1/tiktok?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"..."}'
POST /api/v1/twitter Twitter

Download videos and images from Twitter (X) using ChocoMilk provider.

Parameters

url url Required

The full URL of the Twitter tweet.

Example

curl -X POST "https://myapi.pro.bd/api/v1/twitter?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"..."}'
POST /api/v1/youtube YouTube

Download videos and audio from YouTube in various qualities.

Parameters

url url Required

The full URL of the YouTube video (e.g., https://www.youtube.com/watch?v=...)

quality string

The download quality (e.g., mp3, 720, 1080). Defaults to 360.

Default: 360

Example

curl -X POST "https://myapi.pro.bd/api/v1/youtube?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"...","quality":"360"}'
POST /api/v1/youtubev2 YouTube

Advanced YouTube downloader using Neo-APIs provider.

Parameters

url url Required

The full URL of the YouTube video.

type string Required

The download type: mp3 or mp4.

Example

curl -X POST "https://myapi.pro.bd/api/v1/youtubev2?x-api-key=TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"url":"...","type":"..."}'
Copied to clipboard