DashX REST API
Our Base URL is the gateway to everything DashX offers — use it wisely. Built for speed, reliability, and developer ease. Trusted by — developers and growing every day. 🌱
Base URL
https://api.dashx.dpdns.org
—Active Users
—Total Requests
—Today
RESTProtocol
Authentication
Every endpoint requires a valid API key passed as the query parameter key. Requests without a valid key will be rejected.
Where to get your API Key?
Sign in or register at the auth page to receive your personal DashX API key instantly.
Get API Key
Sign in or register at the auth page to receive your personal DashX API key instantly.
Instagram Downloader
Download reels, videos, and images from Instagram by providing the post URL. Returns direct media download links.
GET
/api/download/instagram
Download Reel / Video
Instagram
ReelVideoDownload
Query Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| url | string | Required | Full Instagram post or reel URL. |
| key | string | Required | Your API key. Get one here → |
Code Example
import axios from 'axios'; const res = await axios.get('https://api.dashx.dpdns.org/api/download/instagram', { params: { url: 'https://www.instagram.com/reel/DU28b_akiFd/', key: 'DHX-YOUR-KEY' } }); console.log(res.data);
const params = new URLSearchParams({ url: 'https://www.instagram.com/reel/DU28b_akiFd/', key: 'DHX-YOUR-KEY' }); const res = await fetch(`https://api.dashx.dpdns.org/api/download/instagram?${params}`); const data = await res.json();
curl -G 'https://api.dashx.dpdns.org/api/download/instagram' \ --data-urlencode 'url=https://www.instagram.com/reel/DU28b_akiFd/' \ --data-urlencode 'key=DHX-YOUR-KEY'
Try it out
Test Endpoint
A sandbox to verify your connection and explore DashX API responses. API key is not required here.
POST
/api/post/example
Echo / Sandbox Test
Test
EchoSandboxDebug
Request Body (JSON)
| Field | Type | Required | Description |
|---|---|---|---|
| query | string | Required | Any message or text payload. |
| key | string | Optional | API key — not required for this endpoint. |
Code Example
import axios from 'axios'; const res = await axios.post('https://api.dashx.dpdns.org/api/post/example', { query: "hi", key: "" }); console.log(res.data);
const res = await fetch('https://api.dashx.dpdns.org/api/post/example', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ query: "hi", key: "" }) }); const data = await res.json();
curl -X POST 'https://api.dashx.dpdns.org/api/post/example' \ -H 'Content-Type: application/json' \ -d '{"query":"hi","key":""}'
Try it out
Live API Stats
Real-time statistics pulled from GET /api/stats. Refreshes on every page load.
GET
/api/stats
Live Statistics
—Total Users
—Total Requests
—Today's Requests
Frequently Asked Questions❓
Why Use DashX?
DashX REST API is built for developers who need fast, reliable endpoints for social media downloads and utility services.
✅ Lightning Fast — Optimized infrastructure ensures quick response times
✅ Developer-Friendly — Simple auth, clear docs, easy integration
✅ Reliable Uptime — Hosted on robust servers with automatic failover
✅ Growing Community — Join 92+ developers already using DashX
✅ Free Tier Available — Get started without any upfront cost
✅ Lightning Fast — Optimized infrastructure ensures quick response times
✅ Developer-Friendly — Simple auth, clear docs, easy integration
✅ Reliable Uptime — Hosted on robust servers with automatic failover
✅ Growing Community — Join 92+ developers already using DashX
✅ Free Tier Available — Get started without any upfront cost
Is DashX Secure?
Yes, absolutely! Security is our top priority at DashX.
🔒 Encrypted Connections — All API requests served over HTTPS with TLS 1.3
🔑 Secure Authentication — Your API keys are hashed and never stored in plain text
💾 Automatic Backups — User data backed up every 2 days
🛡️ Rate Limiting — Protection against abuse and DDoS attacks
📊 Audit Logs — Full transparency on how your data is accessed
🔒 Encrypted Connections — All API requests served over HTTPS with TLS 1.3
🔑 Secure Authentication — Your API keys are hashed and never stored in plain text
💾 Automatic Backups — User data backed up every 2 days
🛡️ Rate Limiting — Protection against abuse and DDoS attacks
📊 Audit Logs — Full transparency on how your data is accessed
How can I be part of DashX?
We'd love to have you in our community! 🚀
Join our active Telegram group to:
💬 Get instant support from the DashX team
🎯 Share feedback and feature requests
🤝 Connect with other developers using DashX
📢 Be the first to know about updates and new features
Join Our Telegram Group
Join our active Telegram group to:
💬 Get instant support from the DashX team
🎯 Share feedback and feature requests
🤝 Connect with other developers using DashX
📢 Be the first to know about updates and new features
Join Our Telegram Group
What's the Terms of Service?
DashX Terms of Service are simple and fair. By using our API, you agree to:
⚠️ No Spam or Abuse — Don't flood our endpoints. Respect rate limits.
🚫 No Malicious Use — Don't use DashX for illegal or harmful purposes.
📜 Content Rights — You're responsible for rights to downloaded content.
🔄 API Key Privacy — Keep your key secure. Don't share it publicly.
💡 Fair Usage — Free tier is for personal/dev use.
⚖️ Service Changes — We reserve the right to modify features with notice.
Breaking these rules may result in API key suspension. Use responsibly! 🌟
⚠️ No Spam or Abuse — Don't flood our endpoints. Respect rate limits.
🚫 No Malicious Use — Don't use DashX for illegal or harmful purposes.
📜 Content Rights — You're responsible for rights to downloaded content.
🔄 API Key Privacy — Keep your key secure. Don't share it publicly.
💡 Fair Usage — Free tier is for personal/dev use.
⚖️ Service Changes — We reserve the right to modify features with notice.
Breaking these rules may result in API key suspension. Use responsibly! 🌟