/ API
REST API · Unlimited Access · $30/month

Build with PixaMedia API

Unlimited 4K/8K cinematic videos, images, music, and voiceovers. One API key, endless possibilities.

API calls/day

4K/8K

Max quality

99.9%

Uptime SLA

$30

Per month

Quick Start

# Install: pip install requests import requests API_KEY = "pm_your_api_key_here" BASE_URL = "https://api.pixamedia.net/api/v1" response = requests.get( f"{BASE_URL}/search", headers={"X-API-Key": API_KEY}, params={ "q": "cinematic nature forest", "type": "video", "limit": 10 } ) data = response.json() for asset in data["data"]: print(f"{asset['title']} → {asset['file_url']}")

Endpoints

GET /api/v1/search Main

Search and filter assets by query, type, category, quality.

Parameters: q string Search term (e.g. "dark forest night") type string video | image | audio category string Nature | Horror | Animal | Space | ... limit integer Max results (default: 20, max: 100) page integer Page number (default: 1)
GET /api/v1/assets/{id}

Get a single asset by ID with full metadata.

Response: { "id": 123, "title": "Dark Forest Rain Loop", "type": "video", "category": "Nature", "quality": "4K", "duration": 15, "file_url": "https://pub-xxx.r2.dev/videos/...", "tags": ["nature", "forest", "cinematic"], "downloads": 1247 }
GET /api/v1/categories

List all 37+ available categories.

GET /api/v1/trending

Get trending assets — most downloaded.

GET /api/v1/new

Get newest assets added in the last 7 days.

GET /api/v1/me

Get your API usage stats — calls today, total, plan info.

Response Format

{ "success": true, "page": 1, "limit": 20, "results": 2, "data": [ { "id": 42, "title": "Lion Hunt Golden Hour", "type": "video", "category": "Animal", "quality": "4K", "duration": 30, "format": "vertical", "file_url": "https://pub-xxx.r2.dev/videos/animal/...", "thumbnail_url": "https://pub-xxx.r2.dev/thumbnails/...", "tags": ["lion", "safari", "4k"], "downloads": 2847, "created_at": "2026-05-01T10:00:00Z" } ] }

Use Cases

YouTube Automation

Auto-generate Shorts with cinematic footage + voiceover

Reels & TikTok

Bulk create vertical content for social media

AI Content Tools

Power your app with premium stock assets

Agency / Reseller

Resell premium content to your clients

API Access

$30/mo

  • Unlimited API calls
  • 4K/8K no watermark
  • All categories + audio
  • Commercial license
  • YouTube ready metadata
  • Cancel anytime
Get API Key — $30/mo

No contracts · Monthly billing

Compare plans

Guest2/day free
Registered10/day free
VIP100/day · $5/mo
APIUnlimited · $30/mo

Authentication

Include your API key in every request header:

X-API-Key: pm_xxxxxxxxxxxxx

Base URL

https://api.pixamedia.net/api/v1

⚡ Live and ready to use

Rate Limits

Guest2 req/day
Registered10 req/day
VIP100 req/day
APIUnlimited

Developer Support

Questions about the API?

contact@pixamedia.net