Introduction
Welcome to the SyntexCore v1.0 documentation.
A platform that provides useful developer tools and free access to premium-level APIs.
https://syntexcore.site/v1
Quick Start
Get your API Key from the Dashboard and perform your first request.
curl -X GET \
'https://syntexcore.site/v1/download?url=https://www.youtube.com/watch?v=dQw4w9WgXcQ' \
-H 'x-api-key: YOUR_API_KEY'
Response Format
All responses are returned in JSON format.
{
"status": "success",
"data": {
"title": "Rick Astley - Never Gonna Give You Up",
"duration": 212,
"thumbnail": "https://i.ytimg.com/vi/dQw4w9WgXcQ/maxresdefault.jpg",
"downloads": [
{
"quality": "1080p",
"format": "mp4",
"url": "https://cdn.videoapi.com/..."
}
]
}
}
Need Help?
If any API is not working or if you want a new API, please let us know.
AI
AI related services and APIs
ChatSandbox
AIAI-powered text generation using ChatSandbox model via nekolabs API
/api/v1/chatsandbox
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/chatsandbox \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Claude AI
AIAI-powered text generation using Claude AI model via minitoolai.com
/api/v1/claude
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/claude \
-H "Content-Type: application/json" \
-d '{
"question": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Copilot AI
AIAI-powered text generation using Copilot model via nekolabs API
/api/v1/copilot
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/copilot \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
DeepSeek V3 Chat
AIChat with DeepSeek V3 AI model for advanced conversations
/api/v1/deepseek-chat
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your message or question |
| model | string | DeepSeek model to use (default: deepseek-v3) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/deepseek-chat \
-H "Content-Type: application/json" \
-d '{
"question": "Explain machine learning in simple terms",
"model": "deepseek-v3",
"apiKey": "YOUR_API_KEY"
}'
Dolphin AI
AIChat with Dolphin AI model (dolphinserver:24B) via dphn.ai
/api/v1/dolphinai
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your message or question |
| template | string | Template for the AI response |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/dolphinai \
-H "Content-Type: application/json" \
-d '{
"question": "What is the meaning of life?",
"template": "logical",
"apiKey": "YOUR_API_KEY"
}'
Gemini Pro Vision
AIAnalyze an image using Google's Gemini Pro Vision model.
/api/v1/gemini-2.5-flash
Request Parameters
| Name | Type | Description |
|---|---|---|
| imageUrl * | string | The URL of the image to analyze |
| prompt * | string | The prompt to guide the analysis |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemini-2.5-flash \
-H "Content-Type: application/json" \
-d '{
"imageUrl": "https://example.com/image.jpg",
"prompt": "What is in this image?",
"apiKey": "YOUR_API_KEY"
}'
Gemini
AIGoogle Gemini chatbot API
/api/v1/gemini
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | Prompt text to send to Gemini |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemini \
-H "Content-Type: application/json" \
-d '{
"apiKey": "YOUR_API_KEY"
}'
Gemma 7B LoRA
AIAI-powered text generation using Gemma 7B LoRA model via nekolabs API
/api/v1/gemma-7b-lora
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemma-7b-lora \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Gemma 7B
AIAI-powered text generation using Gemma 7B model via nekolabs API
/api/v1/gemma-7b
Request Parameters
| Name | Type | Description |
|---|---|---|
| textt * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemma-7b \
-H "Content-Type: application/json" \
-d '{
"textt": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
GPT OSS 120B Chat
AIChat with GPT OSS 120B AI model for intelligent conversations
/api/v1/gpt-oss-120b
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your question or message to the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gpt-oss-120b \
-H "Content-Type: application/json" \
-d '{
"question": "Explain quantum computing in simple terms",
"apiKey": "YOUR_API_KEY"
}'
GPT-4.1 Chat
AIChat with GPT-4.1 AI model powered by Pollinations AI
/api/v1/gpt41
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your message or question |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gpt41 \
-H "Content-Type: application/json" \
-d '{
"question": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Grok 3 Mini Chat
AIChat with Grok 3 Mini AI model for fast and intelligent responses
/api/v1/grok-3-mini
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your question or message to the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/grok-3-mini \
-H "Content-Type: application/json" \
-d '{
"question": "What are the benefits of renewable energy?",
"apiKey": "YOUR_API_KEY"
}'
Hermes 2 Pro
AIAI-powered text generation using Hermes 2 Pro model via nekolabs API
/api/v1/hermes-2-pro
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/hermes-2-pro \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Llama 3.1 8B
AIAI-powered text generation using Llama 3.1 8B model via nekolabs API
/api/v1/llama-3.1-8b
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/llama-3.1-8b \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Llama 3.3 70B
AIAI-powered text generation using Llama 3.3 70B model via nekolabs API
/api/v1/llama-3.3-70b
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/llama-3.3-70b \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Mistral 7B v0.1
AIAI-powered text generation using Mistral 7B v0.1 model via nekolabs API
/api/v1/mistral-7b-v0.1
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/mistral-7b-v0.1 \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Perplexity AI Search
AIAI-powered search with detailed answers and sources using Perplexity AI
/api/v1/perplexity
Request Parameters
| Name | Type | Description |
|---|---|---|
| query * | string | Your question or search query |
| sources | string | Search sources as object (e.g., {"web": true, "social": true}). Default: web only |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/perplexity \
-H "Content-Type: application/json" \
-d '{
"query": "What is artificial intelligence?",
"sources": "{\"web\": true, \"social\": false}",
"apiKey": "YOUR_API_KEY"
}'
Public AI Chat
AIAdvanced conversational AI powered by Public AI.
/api/v1/public-ai
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | The question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/public-ai \
-H "Content-Type: application/json" \
-d '{
"question": "explain quantum physics in simple terms",
"apiKey": "YOUR_API_KEY"
}'
Qwen2.5 Coder 32B
AIAI-powered text generation using Qwen2.5 Coder 32B model via nekolabs API
/api/v1/qwen2.5-coder-32b
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/qwen2.5-coder-32b \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Qwq 32B
AIAI-powered text generation using Qwq 32B model via nekolabs API
/api/v1/qwq-32b
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Your question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/qwq-32b \
-H "Content-Type: application/json" \
-d '{
"text": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
Syntx AI
AIAI-powered text generation using internal Syntx API with API key authentication
/api/v1/syntx
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | Your question or prompt for the AI |
| apiKey * | string | API key for authentication |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/syntx \
-H "Content-Type: application/json" \
-d '{
"question": "What is the meaning of life?",
"apiKey": "YOUR_API_KEY"
}'
UnaimyText Humanizer
AIHumanize AI-generated text to avoid detection
/api/v1/unaimytext
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Text to humanize |
| language | string | Language code (default: EN-US) |
| level | string | Humanization level (default: standard) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/unaimytext \
-H "Content-Type: application/json" \
-d '{
"text": "Artificial intelligence is a wonderful field that...",
"language": "EN-US, ES, ZH, PT-BR, NL, FI, FR, DE, EL, IT, PL, PT-PT, RO, RU, SK, SL, SV",
"level": "standard, enhanced, aggressive",
"apiKey": "YOUR_API_KEY"
}'
Venice AI Chat
AIAdvanced AI chat powered by Venice AI (Dolphin 3.0 Mistral 24B).
/api/v1/venice-chat
Request Parameters
| Name | Type | Description |
|---|---|---|
| question * | string | The question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/venice-chat \
-H "Content-Type: application/json" \
-d '{
"question": "how does photosynthesis work?",
"apiKey": "YOUR_API_KEY"
}'
YouTube Video Summarizer
AIGenerate AI-powered summaries of YouTube videos
/api/v1/youtube-summarizer
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | YouTube video URL (youtube.com or youtu.be) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/youtube-summarizer \
-H "Content-Type: application/json" \
-d '{
"url": "https://youtu.be/oJKy87mT9CE",
"apiKey": "YOUR_API_KEY"
}'
DeepSeek-R1
AIAdvanced reasoning AI model powered by DeepSeek-R1.
/api/v1/deepseek-r1
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | The question or prompt for the AI |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/deepseek-r1 \
-H "Content-Type: application/json" \
-d '{
"text": "how do black holes work?",
"apiKey": "YOUR_API_KEY"
}'
Gemini 2.5 Pro
AIGemini 2.5 Pro model for advanced text generation and image analysis.
/api/v1/gemini-2-5-pro
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | The question or prompt for the AI |
| systemPrompt | string | Optional system prompt |
| imageUrl | string | Optional image URL |
| sessionId | string | Optional session ID |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemini-2-5-pro \
-H "Content-Type: application/json" \
-d '{
"text": "Hi! How are you?",
"systemPrompt": "You are a helpful assistant",
"imageUrl": "http://example.com/example.jpg",
"sessionId": "123",
"apiKey": "YOUR_API_KEY"
}'
Gemini 3 Flash
AIAI-powered text generation using Google Gemini 3 Flash model
/api/v1/gemini-3-flash
Request Parameters
| Name | Type | Description |
|---|---|---|
| text * | string | Input text for the AI model |
| systemPrompt | string | System prompt to guide the AI response |
| imageUrl | string | URL of an image to analyze (optional) |
| sessionId | string | Session ID for conversation continuity |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/gemini-3-flash \
-H "Content-Type: application/json" \
-d '{
"text": "Hello! How are you?",
"systemPrompt": "You are a helpful assistant",
"imageUrl": "https://example.com/image.jpg",
"sessionId": "session123",
"apiKey": "YOUR_API_KEY"
}'
AI GEN
AI GEN related services and APIs
FlatAI Image Generator
AI GENGenerate creative AI images using FlatAI.org engine.
/api/v1/flatai
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | The description of the image to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/flatai \
-H "Content-Type: application/json" \
-d '{
"prompt": "a futuristic city with flying cars",
"apiKey": "YOUR_API_KEY"
}'
FluxDev Image Generator
AI GENGenerate high-quality images using Flux-1-Dev AI model
/api/v1/fluxdev
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | Description of the image to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/fluxdev \
-H "Content-Type: application/json" \
-d '{
"prompt": "a beautiful landscape with mountains and lake",
"apiKey": "YOUR_API_KEY"
}'
MagicStudio AI Art
AI GENGenerate stunning AI art using MagicStudio advanced generation.
/api/v1/magicstudio
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | The description of the art to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/magicstudio \
-H "Content-Type: application/json" \
-d '{
"prompt": "a majestic phoenix rising from ashes, digital art",
"apiKey": "YOUR_API_KEY"
}'
Nuelink AI Image
AI GENGenerate high-quality AI images using Nuelink generator.
/api/v1/nuelink
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | The description of the image to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/nuelink \
-H "Content-Type: application/json" \
-d '{
"prompt": "a futuristic city with neon lights",
"apiKey": "YOUR_API_KEY"
}'
Venice AI Image
AI GENGenerate high-quality AI images instantly using Venice AI Turbo.
/api/v1/venice
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | The description of the image to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/venice \
-H "Content-Type: application/json" \
-d '{
"prompt": "a cybernetic owl with glowing eyes",
"apiKey": "YOUR_API_KEY"
}'
DALL-E 2
AI GENGenerate creative images from text prompts using DALL-E 2.
/api/v1/dalle2
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | The description of the image to generate |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/dalle2 \
-H "Content-Type: application/json" \
-d '{
"prompt": "a cute cat in a space suit",
"apiKey": "YOUR_API_KEY"
}'
NewReality
AI GENInput text for generating image.
/api/v1/new-reality
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | Text description of the image to generate |
| ratio | string | Aspect ratio for the generated image (e.g., 1:1, 16:9, 9:16) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/new-reality \
-H "Content-Type: application/json" \
-d '{
"prompt": "a cute cat sitting on a cloud",
"ratio": "1:1",
"apiKey": "YOUR_API_KEY"
}'
SeeDream V1
AI GENTransform an existing image using AI-powered prompt-based modifications
/api/v1/seedream-v1
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | Text description of how to transform the image |
| imageUrl * | string | URL of the image to transform |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/seedream-v1 \
-H "Content-Type: application/json" \
-d '{
"prompt": "change the image theme to cyberpunk",
"imageUrl": "https://tmpfiles.org/dl/15833810/image.jpg",
"apiKey": "YOUR_API_KEY"
}'
Stable Diffusion XL
AI GENGenerate images using Stable Diffusion XL model
/api/v1/stable-diffusion-xl
Request Parameters
| Name | Type | Description |
|---|---|---|
| prompt * | string | Text description of the image to generate |
| ratio | string | Aspect ratio of the generated image (default: 1:1) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/stable-diffusion-xl \
-H "Content-Type: application/json" \
-d '{
"prompt": "a beautiful landscape with mountains and lake",
"ratio": "1:1, 16:9, 9:16, 4:3, 3:4",
"apiKey": "YOUR_API_KEY"
}'
Downloader
Downloader related services and APIs
Bilibili Downloader
DownloaderDownload videos from Bilibili with support for multiple qualities.
/api/v1/bilibili
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Bilibili video URL |
| quality | string | Video quality (e.g., 360P, 480P, 720P, 1080P) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/bilibili \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.bilibili.tv/video/4793817472438784",
"quality": "480P",
"apiKey": "YOUR_API_KEY"
}'
Facebook Downloader
DownloaderDownload videos from Facebook
/api/v1/facebook
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Facebook video URL |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/facebook \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.facebook.com/share/v/1GyyidCDUw/",
"apiKey": "YOUR_API_KEY"
}'
Instagram Story Downloader
DownloaderDownload Instagram stories from a user profile URL
/api/v1/igstory
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Instagram story URL (e.g. https://www.instagram.com/stories/username/) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/igstory \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.instagram.com/stories/leomessi",
"apiKey": "YOUR_API_KEY"
}'
MEGA Downloader
DownloaderDownload files from MEGA sharing links
/api/v1/mega-dl
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | MEGA share link |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/mega-dl \
-H "Content-Type: application/json" \
-d '{
"url": "https://mega.nz/file/EntxADbJ#UCXeVEZbEo0ci9xKBFJzgMPol39MfFecwoB-TXfp1yc",
"apiKey": "YOUR_API_KEY"
}'
Pinterest Downloader
DownloaderDownload videos and images from Pinterest
/api/v1/pinterest
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Pinterest video or image URL (e.g., pin.it or pinterest.com link) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/pinterest \
-H "Content-Type: application/json" \
-d '{
"url": "https://pin.it/1qFsn7IEj",
"apiKey": "YOUR_API_KEY"
}'
Spotify Downloader
DownloaderDownload tracks from Spotify
/api/v1/spotify
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Spotify track URL |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/spotify \
-H "Content-Type: application/json" \
-d '{
"url": "https://open.spotify.com/track/4bxMJf8FEJNn1I4I2oT1ax",
"apiKey": "YOUR_API_KEY"
}'
Terabox Downloader
DownloaderDownload files from Terabox sharing links
/api/v1/terabox-dl
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | Terabox share link |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/terabox-dl \
-H "Content-Type: application/json" \
-d '{
"url": "https://terabox.com/s/1ZdiYMWn2JsklSZxGdKJEBw",
"apiKey": "YOUR_API_KEY"
}'
TikTok Downloader
DownloaderDownload videos, music and thumbnails from TikTok without watermark.
/api/v1/tiktok
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The TikTok video URL |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/tiktok \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.tiktok.com/@user/video/123456789",
"apiKey": "YOUR_API_KEY"
}'
X (Twitter) Downloader
DownloaderDownload videos from X (Twitter)
/api/v1/x
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The X/Twitter video URL |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/x \
-H "Content-Type: application/json" \
-d '{
"url": "https://x.com/ElonMusk/status/123456789",
"apiKey": "YOUR_API_KEY"
}'
YouTube Downloader
DownloaderDownload videos from YouTube in MP3 or MP4 format.
/api/v1/youtube
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The YouTube video URL |
| format | string | Format to download (mp3 or mp4) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/youtube \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.youtube.com/watch?v=9Oa_mWpckns",
"format": "mp4",
"apiKey": "YOUR_API_KEY"
}'
Instagram Downloader
DownloaderDownload videos and reels from Instagram
/api/v1/instagram
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The Instagram video or reel URL |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/instagram \
-H "Content-Type: application/json" \
-d '{
"url": "https://www.instagram.com/reel/DSS8-CkAOXu/",
"apiKey": "YOUR_API_KEY"
}'
YouTube DL Pro
DownloaderDownload YouTube videos in various formats (144p to 1080p) or extract audio as MP3.
/api/v1/youtube-dlpro
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The YouTube video URL |
| format * | string | The desired format (mp3 for audio, 144, 240, 360, 480, 720, or 1080 for video) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/youtube-dlpro \
-H "Content-Type: application/json" \
-d '{
"url": "https://youtu.be/uB2rhjulY4Q",
"format": "mp3",
"apiKey": "YOUR_API_KEY"
}'
YouTube Downloader Pro
DownloaderElite high-quality YouTube video and audio downloader.
/api/v1/ytdl-pro
Request Parameters
| Name | Type | Description |
|---|---|---|
| url * | string | The YouTube video URL |
| format * | string | Available: 144, 240, 360, 480, 720, 1080, mp3 |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/ytdl-pro \
-H "Content-Type: application/json" \
-d '{
"url": "https://youtu.be/uB2rhjulY4Q",
"format": "720",
"apiKey": "YOUR_API_KEY"
}'
Image Processing
Image Processing related services and APIs
Remove Background
Image ProcessingRemove background from images using AI-powered tools.
/api/v1/removebg
Request Parameters
| Name | Type | Description |
|---|---|---|
| imageUrl * | string | The URL of the image to remove background from |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/removebg \
-H "Content-Type: application/json" \
-d '{
"imageUrl": "https://example.com/image.jpg",
"apiKey": "YOUR_API_KEY"
}'
Search
Search related services and APIs
Google Search
SearchSearch the web using Google and get detailed results
/api/v1/googlesearch
Request Parameters
| Name | Type | Description |
|---|---|---|
| query * | string | Search query text |
| limit | string | Number of results to return (default: 10, max: 30) |
| safeSearch | string | Enable safe search filter (true/false, default: true) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/googlesearch \
-H "Content-Type: application/json" \
-d '{
"query": "nodejs best practices",
"limit": "10",
"safeSearch": "true",
"apiKey": "YOUR_API_KEY"
}'
Lyrics Search
SearchSearch for song lyrics by title, artist, or album name
/api/v1/lyrics
Request Parameters
| Name | Type | Description |
|---|---|---|
| query * | string | Song title, artist name, or search query |
| limit | string | Number of results to return (default: 10, max: 20) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/lyrics \
-H "Content-Type: application/json" \
-d '{
"query": "Bohemian Rhapsody Queen",
"limit": "5",
"apiKey": "YOUR_API_KEY"
}'
YouTube Search
SearchSearch for videos, channels, and playlists on YouTube
/api/v1/ytsearch
Request Parameters
| Name | Type | Description |
|---|---|---|
| query * | string | Search query text |
| limit | string | Number of results to return (default: 10, max: 50) |
| type | string | Type of results: all, video, channel, playlist (default: all) |
Example Request (cURL)
curl -X POST \
https://syntexcore.site/api/v1/ytsearch \
-H "Content-Type: application/json" \
-d '{
"query": "nodejs tutorial",
"limit": "10",
"type": "video",
"apiKey": "YOUR_API_KEY"
}'