Create a free API key
curl --request POST \
--url https://api.meowmail.in/api/v1/keys \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>",
"contact_email": "<string>"
}
'import requests
url = "https://api.meowmail.in/api/v1/keys"
payload = {
"label": "<string>",
"contact_email": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>', contact_email: '<string>'})
};
fetch('https://api.meowmail.in/api/v1/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meowmail.in/api/v1/keys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'label' => '<string>',
'contact_email' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.meowmail.in/api/v1/keys"
payload := strings.NewReader("{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.meowmail.in/api/v1/keys")
.header("Content-Type", "application/json")
.body("{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meowmail.in/api/v1/keys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"api_key": "<string>",
"key_prefix": "<string>",
"label": "<string>",
"tier": "<string>",
"limits": {
"requests_per_minute": 123,
"requests_per_day": 123,
"concurrent_waits": 123
},
"created_at": "2023-11-07T05:31:56Z",
"warning": "<string>"
}
}{
"error": {
"message": "<string>",
"docs": "<string>"
}
}{
"error": {
"message": "<string>",
"docs": "<string>"
}
}Keys
Create a free API key
No signup, no password, no email verification. The raw key is returned exactly once and cannot be recovered.
A key raises your rate limits and is required for long-polling (wait).
Limited to 3 keys per IP per 24 hours.
POST
/
api
/
v1
/
keys
Create a free API key
curl --request POST \
--url https://api.meowmail.in/api/v1/keys \
--header 'Content-Type: application/json' \
--data '
{
"label": "<string>",
"contact_email": "<string>"
}
'import requests
url = "https://api.meowmail.in/api/v1/keys"
payload = {
"label": "<string>",
"contact_email": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({label: '<string>', contact_email: '<string>'})
};
fetch('https://api.meowmail.in/api/v1/keys', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.meowmail.in/api/v1/keys",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'label' => '<string>',
'contact_email' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.meowmail.in/api/v1/keys"
payload := strings.NewReader("{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.meowmail.in/api/v1/keys")
.header("Content-Type", "application/json")
.body("{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.meowmail.in/api/v1/keys")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"label\": \"<string>\",\n \"contact_email\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"api_key": "<string>",
"key_prefix": "<string>",
"label": "<string>",
"tier": "<string>",
"limits": {
"requests_per_minute": 123,
"requests_per_day": 123,
"concurrent_waits": 123
},
"created_at": "2023-11-07T05:31:56Z",
"warning": "<string>"
}
}{
"error": {
"message": "<string>",
"docs": "<string>"
}
}{
"error": {
"message": "<string>",
"docs": "<string>"
}
}Body
application/json
Short name for this integration. Helps us help you.
Maximum string length:
100Example:
"acme-e2e-tests"
Optional and unverified. Used only to warn you about breaking changes. Not a real inbox we can mail today — we have no outbound email.
Maximum string length:
254Response
Key created
Show child attributes
Show child attributes
⌘I