Preferences

Quick Answer

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.

Voice Actor Query API

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.

 

Endpoints

 

Search voice actors

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.

 

Query parameters

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

 

Example request

curl "https://www.voicecrafters.com/api/voice-actors?language=english-voice-actors&gender=male&page=1"

 

Example response

{
    "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
}

 

Voice actor profile

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).

 

Example request

curl "https://www.voicecrafters.com/api/voice-actor/john-smith"

 

Example response

{
    "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"
                }
            ]
        }
    }
}

 

Error responses

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

 

Notes

  • All term slugs follow the same format used in the site’s public URLs. You can find the slug for any taxonomy term by inspecting its page URL on voicecrafters.com.
  • Responses include a X-Robots-Tag: noindex header so search engines will not index raw JSON endpoints.
  • The api_url field in each search result points to the detailed profile endpoint for that voice actor.