Log out
  • Activity
    • Dashboard
    • Last Messages
  • My Contacts
    • Contact List
    • Import CSV
  • Email Marketing
    • Campaigns
    • Email Templates
  • Landing Pages
    • Page List
    • Web Templates
  • Settings
    • Account
    • API Key
  • Help Pages
  • Unexpected error. Please try again.
Your API Key ()
Unexpected error. Please try again.
Test it (API documentation)
Set the next API call example parameters and click on the Execute button to test your API Key.
Javascript code
function sendEmail(emailJson) {
	$.ajax({
		method: 'POST',
		url: 'https://api.mustache.website/',
		data: JSON.stringify(emailJson),
		headers: {
			'Content-Type': 'application/json',
			'X-Api-Key': 'api key'
		},
		dataType: 'json',
		success: function (response) {
			console.log(response);
		},
		error: function (xhr, textStatus, errorThrown) {
			console.log(xhr);
		}
	});
}
  
Result
							
©
Crafted with by Nacho Coll.