Skip to main content
GET
/
v4
/
email_templates
List email templates
curl --request GET \
  --url https://api.kit.com/v4/email_templates \
  --header 'X-Kit-Api-Key: <api-key>'
{
  "email_templates": [
    {
      "id": 123,
      "name": "<string>",
      "is_default": true,
      "category": "<string>"
    }
  ],
  "pagination": {
    "has_previous_page": true,
    "has_next_page": true,
    "start_cursor": "<string>",
    "end_cursor": "<string>",
    "per_page": 123
  }
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Query Parameters

after
any | null

To fetch next page of results, use ?after=<end_cursor>

before
any | null

To fetch previous page of results, use ?before=<start_cursor>

include_total_count
boolean

To include the total count of records in the response, use true. For large collections, expect a slightly slower response.

per_page
any | null

Number of results per page. Default 500, maximum 1000.

Response

Returns a paginated list of all email templates for your account

email_templates
object[]
required
pagination
object
required