/ 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 # Your API key API_KEY = "pm_your_api_key_here" BASE_URL = "https://api.pixamedia.net/v1" # Search for videos response = requests.get( f"{BASE_URL}/search", headers={"Authorization": f"Bearer {API_KEY}"}, params={ "query": "cinematic nature forest", "type": "video", "quality": "4K", "limit": 10 } ) data = response.json() for asset in data["results"]: print(f"{asset['title']} → {asset['file_url']}")

Endpoints

GET /v1/search Main

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

Parameters: query string Search term (e.g. "dark forest night") type string video | image | audio category string Nature | Horror | Animal | Space | ... quality string 4K | 8K | 1080p format string vertical | horizontal limit integer Max results (default: 20, max: 100) offset integer Pagination offset
GET /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/...", "thumbnail_url": "https://pub-xxx.r2.dev/thumbnails/...", "tags": ["nature", "forest", "cinematic"], "ai_prompt": "dark rainy forest, cinematic, 4K...", "youtube_description": "...", "hashtags": "#nature #forest #cinematic" }
GET /v1/categories

List all available categories with asset counts.

GET /v1/trending

Get trending assets — most downloaded this week.

GET /v1/new

Get newest assets added in the last 7 days.

GET /v1/me

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

Response Format

{ "success": true, "total": 1247, "limit": 20, "offset": 0, "results": [ { "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", "cinematic"], "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

Reseller / Agency

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

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:

Authorization: Bearer pm_xxxxxxxxxxxxx

Rate Limits

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

Base URL

https://api.pixamedia.net/v1

⚡ Coming soon — join waitlist above

Developer Support

Questions about the API?

api@pixamedia.net