Is me.com a Disposable Email?
Whitelistedme.com is a verified legitimate email provider. Emails from this domain are safe to accept.
Details
- Status
- whitelisted
- Added
- 2025-09-06
- Last Checked
- 2026-07-26
- Reason
- me.com
Registration Data
- Registrar
- Nom-iq Ltd. dba COM LAUDE
- Registered
- 1994-08-23 (31 years, 11 months)
- Expires
- 2026-08-22
Website Preview
Screenshot may be up to 14 days old.
API Playground
Check me.com programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/me.com
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/me.com")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/me.com");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/me.com");
$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/me.com")
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 me.com.
Also available as xml, yaml, or img — replace json in the URL.
DNS Records
MX Records
- mx01.mail.icloud.com
- mx02.mail.icloud.com
NS Records
- a.ns.apple.com
- b.ns.apple.com
- c.ns.apple.com
- d.ns.apple.com
SOA Record
- ns-ext-prod.jackfruit.apple.com
- dnscontact@apple.com
A Records
- 17.253.142.4
TXT Records
- google-site-verification=MNF9HptJ4y6IfhN-pKYxus6nxi5j2pKWbuDNOvNwNJI
- v=spf1 redirect=_spf.icloud.com
- yahoo-verification-key=PLMLb4mzfzwdrJ0HR4KkDozpZEbdJFTllPYVvyxgOJ8=
Related Domains by Mail Server
50 other domains also
use mx01.mail.icloud.com
as their mail server.
Domain Network
Connections between domains, mail servers, nameservers, and shared infrastructure.
FAQ
Is me.com a disposable email provider?
No, me.com is whitelisted and considered a legitimate email provider.
Can I use me.com for account registration?
me.com is a legitimate email provider and safe to accept for account registrations.
How can I block disposable emails from me.com?
Use the Trashmail-Blacklist API to check me.com before accepting it in your application. Send a GET request to /check/json/me.com 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 me.com?
me.com is whitelisted as a legitimate provider. We provide its status, DNS records, and related domains sharing the same mail server.
Block Disposable Emails Automatically
Integrate our free API into your signup flow to detect domains like me.com before they reach your database.