Templates
Search Templates
Search for email templates by name or other criteria using the AutoSend API.
GET
/
templates
/
search
curl --request GET \
--url 'https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10' \
--header 'Authorization: Bearer <token>'
import requests
url = "https://api.autosend.com/v1/templates/search"
headers = {
"Authorization": "Bearer <token>"
}
params = {
"query": "welcome",
"templateType": "transactional",
"page": 1,
"limit": 10
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const params = new URLSearchParams({
query: 'welcome',
templateType: 'transactional',
page: '1',
limit: '10'
});
fetch(`https://api.autosend.com/v1/templates/search?${params}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer <token>'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
<?php
$params = http_build_query([
'query' => 'welcome',
'templateType' => 'transactional',
'page' => 1,
'limit' => 10
]);
$url = "https://api.autosend.com/v1/templates/search?{$params}";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer <token>'
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
url := "https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Authorization", "Bearer <token>")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class SearchTemplates {
public static void main(String[] args) {
try {
URL url = new URL("https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer <token>");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
con.disconnect();
System.out.println(content.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
require 'net/http'
require 'uri'
uri = URI('https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Authorization'] = 'Bearer <token>'
response = http.request(request)
puts response.body
{
"success": true,
"data": {
"templates": [
{
"templateId": "A-abc123def456ghi789jk",
"templateName": "Welcome Email",
"description": "Welcome email for new users",
"subject": "Welcome to Our Platform!",
"previewText": "We're glad to have you on board",
"templateType": "transactional",
"builderType": "code",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"pages": 1
}
}
}
curl --request GET \
--url 'https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10' \
--header 'Authorization: Bearer <token>'
import requests
url = "https://api.autosend.com/v1/templates/search"
headers = {
"Authorization": "Bearer <token>"
}
params = {
"query": "welcome",
"templateType": "transactional",
"page": 1,
"limit": 10
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const params = new URLSearchParams({
query: 'welcome',
templateType: 'transactional',
page: '1',
limit: '10'
});
fetch(`https://api.autosend.com/v1/templates/search?${params}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer <token>'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
<?php
$params = http_build_query([
'query' => 'welcome',
'templateType' => 'transactional',
'page' => 1,
'limit' => 10
]);
$url = "https://api.autosend.com/v1/templates/search?{$params}";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer <token>'
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
url := "https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Authorization", "Bearer <token>")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class SearchTemplates {
public static void main(String[] args) {
try {
URL url = new URL("https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer <token>");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
con.disconnect();
System.out.println(content.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
require 'net/http'
require 'uri'
uri = URI('https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Authorization'] = 'Bearer <token>'
response = http.request(request)
puts response.body
{
"success": true,
"data": {
"templates": [
{
"templateId": "A-abc123def456ghi789jk",
"templateName": "Welcome Email",
"description": "Welcome email for new users",
"subject": "Welcome to Our Platform!",
"previewText": "We're glad to have you on board",
"templateType": "transactional",
"builderType": "code",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"pages": 1
}
}
}
Authorizations
string | header
required
Bearer authentication header of the form Bearer
<token>, where <token> is your auth token.Query Parameters
string
Search query string. Searches across template name, subject, and template ID.Example:
"welcome"string
Filter templates by type.Allowed values:
transactional, marketingExample: "transactional"string
Filter by exact template name.Example:
"Welcome Email"string
Filter by subject line.Example:
"Welcome"string
Filter by template ID.Example:
"A-abc123def456ghi789jk"integer
Page number for pagination (starts at 1).Minimum:
1Example: 1integer
Number of results per page.Range:
1 - 100Example: 10string
Field to sort results by.Default:
"createdAt"Example: "createdAt"Response
Templates search resultsboolean
Indicates if the request was successfulExample:
trueobject
Show child attributes
Show child attributes
object[]
Array of matching template objects
Show child attributes
Show child attributes
string
Unique template identifierExample:
"A-abc123def456ghi789jk"string
Name of the templateExample:
"Welcome Email"string
Template descriptionExample:
"Welcome email for new users"string
Email subject lineExample:
"Welcome to Our Platform!"string
Email preview textExample:
"We're glad to have you on board"string
Type of templateExample:
"transactional"string
Builder type usedExample:
"code"string
ISO 8601 timestamp of creationExample:
"2026-01-15T10:30:00.000Z"string
ISO 8601 timestamp of last updateExample:
"2026-02-20T14:45:00.000Z"Was this page helpful?
⌘I
curl --request GET \
--url 'https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10' \
--header 'Authorization: Bearer <token>'
import requests
url = "https://api.autosend.com/v1/templates/search"
headers = {
"Authorization": "Bearer <token>"
}
params = {
"query": "welcome",
"templateType": "transactional",
"page": 1,
"limit": 10
}
response = requests.get(url, headers=headers, params=params)
print(response.json())
const params = new URLSearchParams({
query: 'welcome',
templateType: 'transactional',
page: '1',
limit: '10'
});
fetch(`https://api.autosend.com/v1/templates/search?${params}`, {
method: 'GET',
headers: {
'Authorization': 'Bearer <token>'
}
})
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error('Error:', error));
<?php
$params = http_build_query([
'query' => 'welcome',
'templateType' => 'transactional',
'page' => 1,
'limit' => 10
]);
$url = "https://api.autosend.com/v1/templates/search?{$params}";
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Authorization: Bearer <token>'
]);
$response = curl_exec($ch);
curl_close($ch);
echo $response;
?>
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
url := "https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("Authorization", "Bearer <token>")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
fmt.Println("Error:", err)
return
}
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class SearchTemplates {
public static void main(String[] args) {
try {
URL url = new URL("https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10");
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod("GET");
con.setRequestProperty("Authorization", "Bearer <token>");
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuilder content = new StringBuilder();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
con.disconnect();
System.out.println(content.toString());
} catch (Exception e) {
e.printStackTrace();
}
}
}
require 'net/http'
require 'uri'
uri = URI('https://api.autosend.com/v1/templates/search?query=welcome&templateType=transactional&page=1&limit=10')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Authorization'] = 'Bearer <token>'
response = http.request(request)
puts response.body
{
"success": true,
"data": {
"templates": [
{
"templateId": "A-abc123def456ghi789jk",
"templateName": "Welcome Email",
"description": "Welcome email for new users",
"subject": "Welcome to Our Platform!",
"previewText": "We're glad to have you on board",
"templateType": "transactional",
"builderType": "code",
"createdAt": "2026-01-15T10:30:00.000Z",
"updatedAt": "2026-02-20T14:45:00.000Z"
}
],
"pagination": {
"page": 1,
"limit": 10,
"total": 1,
"pages": 1
}
}
}