Skip to main content
GET
/
templates
/
{templateId}
curl --request GET \
  --url https://api.autosend.com/v1/templates/A-abc123def456ghi789jk \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.autosend.com/v1/templates/A-abc123def456ghi789jk"

headers = {
    "Authorization": "Bearer <token>"
}

response = requests.get(url, headers=headers)
print(response.json())
fetch('https://api.autosend.com/v1/templates/A-abc123def456ghi789jk', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <token>'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
<?php

$templateId = 'A-abc123def456ghi789jk';
$url = "https://api.autosend.com/v1/templates/{$templateId}";

$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/A-abc123def456ghi789jk"

    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 GetTemplate {
    public static void main(String[] args) {
        try {
            URL url = new URL("https://api.autosend.com/v1/templates/A-abc123def456ghi789jk");
            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/A-abc123def456ghi789jk')

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": {
    "templateId": "A-abc123def456ghi789jk",
    "projectId": "691adaeef6892e15944d4d96",
    "templateName": "Welcome Email",
    "description": "Welcome email for new users",
    "subject": "Welcome to {{companyName}}, {{firstName}}!",
    "previewText": "We are glad to have you on board",
    "emailTemplate": "<h1>Welcome, {{firstName}}!</h1><p>Thanks for joining {{companyName}}.</p>",
    "plainTextTemplate": "Welcome, {{firstName}}! Thanks for joining {{companyName}}.",
    "templateType": "transactional",
    "builderType": "code",
    "dynamicVariables": {
      "firstName": "string",
      "companyName": "string"
    },
    "createdAt": "2026-01-15T10:30:00.000Z",
    "updatedAt": "2026-02-20T14:45:00.000Z"
  }
}
curl --request GET \
  --url https://api.autosend.com/v1/templates/A-abc123def456ghi789jk \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.autosend.com/v1/templates/A-abc123def456ghi789jk"

headers = {
    "Authorization": "Bearer <token>"
}

response = requests.get(url, headers=headers)
print(response.json())
fetch('https://api.autosend.com/v1/templates/A-abc123def456ghi789jk', {
  method: 'GET',
  headers: {
    'Authorization': 'Bearer <token>'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));
<?php

$templateId = 'A-abc123def456ghi789jk';
$url = "https://api.autosend.com/v1/templates/{$templateId}";

$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/A-abc123def456ghi789jk"

    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 GetTemplate {
    public static void main(String[] args) {
        try {
            URL url = new URL("https://api.autosend.com/v1/templates/A-abc123def456ghi789jk");
            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/A-abc123def456ghi789jk')

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": {
    "templateId": "A-abc123def456ghi789jk",
    "projectId": "691adaeef6892e15944d4d96",
    "templateName": "Welcome Email",
    "description": "Welcome email for new users",
    "subject": "Welcome to {{companyName}}, {{firstName}}!",
    "previewText": "We are glad to have you on board",
    "emailTemplate": "<h1>Welcome, {{firstName}}!</h1><p>Thanks for joining {{companyName}}.</p>",
    "plainTextTemplate": "Welcome, {{firstName}}! Thanks for joining {{companyName}}.",
    "templateType": "transactional",
    "builderType": "code",
    "dynamicVariables": {
      "firstName": "string",
      "companyName": "string"
    },
    "createdAt": "2026-01-15T10:30:00.000Z",
    "updatedAt": "2026-02-20T14:45:00.000Z"
  }
}

Authorizations

Authorizations
string | header
required
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

templateId
string
required
The unique identifier of the template.Example: "A-abc123def456ghi789jk"

Response

Template retrieved successfully
success
boolean
Indicates if the request was successfulExample: true
data
object
The template object