For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
PricingJoin CommunityGet API Key
DocumentationAPI ReferenceChangelog
DocumentationAPI ReferenceChangelog
LogoLogo
PricingJoin CommunityGet API Key

Changelog

February 13, 2025
February 13, 2025
Was this page helpful?
Previous
Built with

Official Python SDK

Murf’s official python SDK is now available on PyPi. You can install it using pip:

$pip install murf

The SDK provides a simple interface to interact with Murf’s APIs. Here’s an example of how you can use the SDK to generate speech:

1from murf import Murf
2
3client = Murf(
4 api_key="YOUR_API_KEY" # Not required if you have set the MURF_API_KEY environment variable
5)
6
7res = client.text_to_speech.generate(
8 text="There is much to be said",
9 voice_id="terrell",
10)