Discussions
List Templates V2
13 days ago by null(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