Want to automate your voice actor search? Instantly access our professional voice over voice actor database via API – filter by language, style, or category and retrieve detailed profiles for seamless integration into your workflow. Fast, flexible, and no authentication required.
The Voice Crafters Voice Actor Query API provides programmatic access to our voice actor database. Use it to search for voice actors by language, gender, style, category and more, or to retrieve the full profile of a specific voice actor.
Responses are returned as JSON and cached for 5 minutes (Cache-Control: public, max-age=300). No authentication is required.
GET https://www.voicecrafters.com/api/voice-actors
Returns a paginated list of voice actors matching the supplied filters. Results are returned 100 per page.
All parameters are optional and can be combined freely.
| Parameter | Description | Example |
|---|---|---|
language |
Native language (term slug) | english-voice-actors |
foreign_language |
Foreign language (term slug) | spanish-voice-over-artists |
gender |
Gender (term slug) | male, female |
style |
Vocal style (term slug) | friendly, authoritative |
category |
Voice actor category (term slug) | commercials, audiobooks |
pitch |
Vocal pitch (term slug) | deep, high |
character |
Character type (term slug) | narrator, villain |
impersonation |
Impersonation (term slug) | celebrity |
country |
Country (term slug) | united-states |
search |
Free-text keyword search | morgan |
page |
Page number (default 1) |
2 |
curl "https://www.voicecrafters.com/api/voice-actors?language=english-voice-actors&gender=male&page=1"
{
"results": [
{
"name": "John Smith",
"description": "Professional voice actor with a warm, friendly tone...",
"url": "https://www.voicecrafters.com/voice-actor/john-smith/",
"api_url": "https://www.voicecrafters.com/api/voice-actor/john-smith",
"photo": "https://www.voicecrafters.com/wp-content/uploads/photo.jpg",
"rating": 4.9,
"review_count": 42,
"languages": ["English"],
"foreign_languages": ["Spanish"],
"gender": "Male",
"country": "United States",
"styles": ["warm", "friendly"],
"minimum_rate": "100",
"labels": ["Top Talent"],
"main_demo_url": "https://www.voicecrafters.com/wp-content/uploads/demo.mp3",
"available": true
}
],
"total": 523,
"page": 1,
"per_page": 100
}
GET https://www.voicecrafters.com/api/voice-actor/{slug}
Returns the full profile of a single voice actor. {slug} is the voice actor’s URL slug (the portion after /voice-actor/ in the profile page URL).
curl "https://www.voicecrafters.com/api/voice-actor/john-smith"
{
"voice_actor": {
"name": "John Smith",
"url": "https://www.voicecrafters.com/voice-actor/john-smith/",
"photo": "https://www.voicecrafters.com/wp-content/uploads/photo.jpg",
"rating": 4.9,
"review_count": 42,
"languages": ["English"],
"foreign_languages": ["Spanish"],
"gender": "Male",
"country": "United States",
"styles": ["warm", "friendly"],
"minimum_rate": "100",
"labels": ["Top Talent"],
"available": true,
"about": "Professional voice actor with over 10 years of experience...",
"experience": "10+ years",
"credentials": "SAG-AFTRA member, AVO Certified",
"companies": "Nike, Coca-Cola, Apple",
"equipment": "Neumann TLM 103, Universal Audio Apollo Twin",
"delivery_time": "24 hours",
"age_range": ["Adult", "Middle-aged"],
"pitch": ["Medium"],
"characters": ["Narrator"],
"impersonations": [],
"categories": ["Commercials", "Audiobooks"],
"completed_jobs": 42,
"demos": {
"native": [
{
"language": "English",
"category": "Commercial",
"url": "https://www.voicecrafters.com/wp-content/uploads/demo-en.mp3"
}
],
"foreign": [
{
"language": "Spanish",
"category": "Commercial",
"url": "https://www.voicecrafters.com/wp-content/uploads/demo-es.mp3"
}
]
}
}
}
| HTTP status | Body | Meaning |
|---|---|---|
400 |
{"error": "Missing voice actor slug"} |
No slug was provided after /api/voice-actor/ |
404 |
{"error": "Voice actor not found"} |
No published voice actor matches the supplied slug |
X-Robots-Tag: noindex header so search engines will not index raw JSON endpoints.api_url field in each search result points to the detailed profile endpoint for that voice actor.