docs
UAEN
API Reference

List Templates

List all available templates.

GET/api/v1/templates

Authorizations

X-API-Keystringheaderrequired
Your API key for authentication

Cookies

wos-sessionstringcookie
Session cookie
access_tokenstringcookie
Access token cookie
datalab_active_teamstringcookie
Active team cookie

Response

Successful Response
List Templates
import requests

url = "https://www.datalab.to/api/v1/templates"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)
200Success
[{"id": "tpl_abc", "name": "Invoice", "examples_count": 12}]