Discussions

Ask a Question
Back to All

List Templates V2

(edited)

import requests

url = "https://api.heygen.com/v2/templates"

headers = {
"accept": "application/json",
"x-api-key": ""
}

response = requests.get(url, headers=headers)

print(response.text)


{
"error": null,
"data": {
"templates": []
}
}

The result of running the above code is empty. No template list is output