Is test.local a Disposable Email?
Unknowntest.local is not yet classified in our database.
Details
- Status
- unknown
- Added
- 2026-02-16
- Last Checked
- 2026-06-18
- Reason
- test.local
API Playground
Check test.local programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/test.local
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/test.local")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/test.local");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/test.local");
$data = json_decode($json, true);
echo $data["status"]; // blacklisted / whitelisted / unknown
package main
import (
"encoding/json"
"fmt"
"net/http"
)
func main() {
resp, err := http.Get("https://trashmail-blacklist.org/check/json/test.local")
if err != nil {
panic(err)
}
defer resp.Body.Close()
var result struct {
Status string `json:"status"`
Domain string `json:"domain"`
}
json.NewDecoder(resp.Body).Decode(&result)
fmt.Println(result.Status)
}
Click "Run" to fetch the JSON response for test.local.
Also available as xml, yaml, or img — replace json in the URL.
FAQ
Is test.local a disposable email provider?
test.local has not yet been classified. It is currently unknown whether it is a disposable email provider.
Can I use test.local for account registration?
We have not yet verified test.local. Proceed with caution or use our API to check programmatically.
How can I block disposable emails from test.local?
Use the Trashmail-Blacklist API to check test.local before accepting it in your application. Send a GET request to /check/json/test.local to receive the domain status as JSON. Integrate this check into your signup or contact forms to automatically reject disposable email addresses.
What data is available for test.local?
test.local is not yet in our database. You can check it via our API or submit it for review through our contact form.
Block Disposable Emails Automatically
Integrate our free API into your signup flow to detect domains like test.local before they reach your database.