List templates registered for your organization. form_fields is omitted from the list response for performance — fetch a single template with GET /v1/edits/templates/{template_id} to see the full field list.
from retab import Retabclient = Retab()templates = client.edits.templates.list(limit=20, order="desc")for template in templates.data: print(f"{template.id}: {template.name} ({template.field_count} fields)")