All systems operational  ·  v1.0 Production

The API Layer Developers Love

TeraBox downloads · AI image enhancement · AI image generation.
One key. Clean JSON. No nonsense.

Explore APIs
quick_start.js
// 1. Get your free key at anshapi.dev
const key = 'anshapi-xxxxxxxxxx';

// 2. Call any API — that's it.
const res = await fetch(`/api/terabox?url=$&key=$`);
const data = await res.json();

// ✓  {success: true, data: {download_link, stream_url, ...}}
0
APIs Available
0
Free Req/Day
0
Pro Req/Day
99.9%
Uptime
Available APIs

Three Powerful APIs.
One Simple Key.

FREE + PAID

TeraBox Downloader

Extract direct download links, stream URLs in 360p→2K, thumbnails and subtitles from any TeraBox share URL.

GET /api/terabox?url={link}&key={key}
"download_link": "https://..."
"stream_url": "https://..."
"quality": "2K"
FREE + PAID

AI Image Enhancer

Upscale, restore and enhance any image URL using advanced AI. Returns a high-resolution enhanced image URL instantly.

GET /api/enhance?imgurl={url}&key={key}
"enhanced_image_url": "https://..."
"code": "omnIT7t2"
"success": true

AI Image Generator

Generate photorealistic images from text prompts using SeedDream AI. Supports model v4 and v5 for different art styles.

GET /api/seedream?prompt={text}&model=5&key={key}
"image": "https://cdn..."
"model": "seedream_5"
"credit": "anshapi"
Pricing

Simple. Honest. Transparent.

Start free with 1,000 requests per day. Upgrade when you need more.

Free
₹0/mo

Forever free. No credit card.

  • 1,000 requests / day
  • TeraBox Downloader API
  • AI Image Enhancer API
  • Unique API key
  • Usage dashboard
  • AI Image Generator
  • Priority support
Quick Start

From Zero to First Request
in 3 Steps

01

Create Your Account

Sign up with your name and email. No credit card needed for the free plan. Takes 10 seconds.

02

Copy Your API Key

Your unique key is auto-generated — format: anshapi-xxxxxxxxxx. Find it in your dashboard.

03

Call the API

Pass ?key=your_key as a query parameter or via x-api-key header. Get JSON back.

// Fetch TeraBox download links
const KEY = 'anshapi-xxxxxxxxxx';
const url = 'https://1024terabox.com/s/xxxxx';

const res = await fetch(`/api/terabox?url=$&key=$`);
const json = await res.json();
console.log(json.data.download_link);
import requests

KEY = 'anshapi-xxxxxxxxxx'
url = 'https://1024terabox.com/s/xxxxx'

r = requests.get(
    'https://yoursite.com/api/terabox',
    params={'url': url, 'key': KEY}
)
data = r.json()
print(data['data']['download_link'])
# TeraBox Downloader
curl "https://yoursite.com/api/terabox?url=TERABOX_URL&key=anshapi-xxx"

# Image Enhancer
curl "https://yoursite.com/api/enhance?imgurl=IMAGE_URL&key=anshapi-xxx"

# AI Generator (Pro only)
curl "https://yoursite.com/api/seedream?prompt=cyberpunk+city&model=5&key=anshapi-xxx"
FAQ

Common Questions

Your API key is a unique token that identifies your account. It's auto-generated when you sign up — format anshapi-xxxxxxxxxx. Just include it in every API request as ?key=your_key.
Your usage counter resets every midnight (UTC). Free plan: 1,000 requests/day. Pro plan: 10,000 requests/day.
You'll get a 429 Too Many Requests response with a JSON error message. Your account won't be banned — just upgrade to Pro or wait for the daily reset.
Contact @dev_anshapi to upgrade. Pro plan is ₹100/month and unlocks 10x more requests plus the AI Image Generator API.