Skip to main content
GET
/
api
/
v1
/
pronunciations
/
csv
Python (SDK)
import os
from syllable_sdk import SyllableSDK


with SyllableSDK(
    api_key_header=os.getenv("SYLLABLESDK_API_KEY_HEADER", ""),
) as ss_client:

    res = ss_client.pronunciations.pronunciations_download_csv()

    # Handle response
    print(res)
This response does not have an example.

Authorizations

Syllable-API-Key
string
header
required

Response

200 - text/csv

CSV download

The response is of type file.

I