SyntexCore SyntexCore

Introduction

Welcome to the SyntexCore v1.0 documentation.

A platform that provides useful developer tools and free access to premium-level APIs.

Base URL: https://syntexcore.site/v1

Quick Start

Get your API Key from the Dashboard and perform your first request.

BASH
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.

JSON
{
  "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

AI

AI-powered text generation using ChatSandbox model via nekolabs API

POST /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

AI

AI-powered text generation using Claude AI model via minitoolai.com

POST /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

AI

AI-powered text generation using Copilot model via nekolabs API

POST /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

AI

Chat with DeepSeek V3 AI model for advanced conversations

POST /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

AI

Chat with Dolphin AI model (dolphinserver:24B) via dphn.ai

POST /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

AI

Analyze an image using Google's Gemini Pro Vision model.

POST /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

AI

Google Gemini chatbot API

POST /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

AI

AI-powered text generation using Gemma 7B LoRA model via nekolabs API

POST /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

AI

AI-powered text generation using Gemma 7B model via nekolabs API

POST /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

AI

Chat with GPT OSS 120B AI model for intelligent conversations

POST /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

AI

Chat with GPT-4.1 AI model powered by Pollinations AI

POST /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

AI

Chat with Grok 3 Mini AI model for fast and intelligent responses

POST /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

AI

AI-powered text generation using Hermes 2 Pro model via nekolabs API

POST /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

AI

AI-powered text generation using Llama 3.1 8B model via nekolabs API

POST /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

AI

AI-powered text generation using Llama 3.3 70B model via nekolabs API

POST /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

AI

AI-powered text generation using Mistral 7B v0.1 model via nekolabs API

POST /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

AI

AI-powered search with detailed answers and sources using Perplexity AI

POST /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

AI

Advanced conversational AI powered by Public AI.

POST /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

AI

AI-powered text generation using Qwen2.5 Coder 32B model via nekolabs API

POST /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

AI

AI-powered text generation using Qwq 32B model via nekolabs API

POST /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

AI

AI-powered text generation using internal Syntx API with API key authentication

POST /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

AI

Humanize AI-generated text to avoid detection

POST /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

AI

Advanced AI chat powered by Venice AI (Dolphin 3.0 Mistral 24B).

POST /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

AI

Generate AI-powered summaries of YouTube videos

POST /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

AI

Advanced reasoning AI model powered by DeepSeek-R1.

GET /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

AI

Gemini 2.5 Pro model for advanced text generation and image analysis.

GET /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

AI

AI-powered text generation using Google Gemini 3 Flash model

POST /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 GEN

Generate creative AI images using FlatAI.org engine.

POST /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 GEN

Generate high-quality images using Flux-1-Dev AI model

POST /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 GEN

Generate stunning AI art using MagicStudio advanced generation.

POST /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"
}'
AI GEN

Generate high-quality AI images using Nuelink generator.

POST /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 GEN

Generate high-quality AI images instantly using Venice AI Turbo.

POST /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 GEN

Generate creative images from text prompts using DALL-E 2.

POST /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 GEN

Input text for generating image.

POST /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 GEN

Transform an existing image using AI-powered prompt-based modifications

POST /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 GEN

Generate images using Stable Diffusion XL model

GET /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

Downloader

Download videos from Bilibili with support for multiple qualities.

POST /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

Downloader

Download videos from Facebook

POST /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

Downloader

Download Instagram stories from a user profile URL

POST /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

Downloader

Download files from MEGA sharing links

POST /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

Downloader

Download videos and images from Pinterest

POST /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

Downloader

Download tracks from Spotify

POST /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

Downloader

Download files from Terabox sharing links

POST /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

Downloader

Download videos, music and thumbnails from TikTok without watermark.

POST /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

Downloader

Download videos from X (Twitter)

POST /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

Downloader

Download videos from YouTube in MP3 or MP4 format.

POST /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

Downloader

Download videos and reels from Instagram

POST /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

Downloader

Download YouTube videos in various formats (144p to 1080p) or extract audio as MP3.

GET /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

Downloader

Elite high-quality YouTube video and audio downloader.

POST /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 Processing

Remove background from images using AI-powered tools.

POST /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

Search

Search the web using Google and get detailed results

POST /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

Search

Search for song lyrics by title, artist, or album name

POST /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

Search

Search for videos, channels, and playlists on YouTube

POST /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"
}'

If any API is not working or if you want a new API, please let us know. We're here to help!