Get verified datasets for speech and accents from $0.59/clip
API Documentation
Build powerful applications with our comprehensive REST API. Access verified datasets programmatically with full documentation and examples.
Quick Start
# Install the SDK
$ pip install vmx-sdk
# Authenticate
from vmx import Client
client = Client(api_key="your_api_key")
API Endpoints
GET
/api/datasetsList all available datasets
GET
/api/datasets/:idGet details for a specific dataset
POST
/api/datasets/searchSearch datasets with filters
POST
/api/purchasesCreate a new purchase
GET
/api/purchases/:idGet purchase details and download link
POST
/api/verification/checkCheck verification status of a dataset
Key Features
🔐
Authentication
All API requests require authentication using Bearer token
⏱️
Rate Limiting
1000 requests per minute per API key
🔔
Webhooks
Receive real-time notifications for dataset updates
📦
SDKs
Official SDKs available for Python, JavaScript, Go
Code Examples
Search Datasets
client.datasets.search({
language: 'English',
min_hours: 1000,
max_price_per_hour: 10
})
Download Dataset
purchase = client.purchases.create(
dataset_id: 'ds_123',
payment_method: 'credit_card'
)
download_url = purchase.download_url