Is outlook.co a Disposable Email?
Unknownoutlook.co is not yet classified in our database.
Details
- Status
- unknown
- Added
- 2025-09-03
- Last Checked
- 2026-06-25
- Reason
- outlook.co
Website Preview
Screenshot may be up to 14 days old.
API Playground
Check outlook.co programmatically — pick your language, copy, run. No authentication required.
curl https://trashmail-blacklist.org/check/json/outlook.co
import requests
r = requests.get("https://trashmail-blacklist.org/check/json/outlook.co")
data = r.json()
print(data["status"]) # blacklisted / whitelisted / unknown
const r = await fetch("https://trashmail-blacklist.org/check/json/outlook.co");
const data = await r.json();
console.log(data.status); // blacklisted / whitelisted / unknown
<?php
$json = file_get_contents("https://trashmail-blacklist.org/check/json/outlook.co");
$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/outlook.co")
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 outlook.co.
Also available as xml, yaml, or img — replace json in the URL.
DNS Records
MX Records
- nam.olc.protection.outlook.com
NS Records
- ns1-02.azure-dns.com
- ns2-02.azure-dns.net
- ns3-02.azure-dns.org
- ns4-02.azure-dns.info
SOA Record
- ns1-02.azure-dns.com
- azuredns-hostmaster@microsoft.com
A Records
- 204.79.197.210
TXT Records
- google-site-verification=ENlcIO82dscJT19ORP3bUCfFAn-ieUsYBj3F6b8-P1A
- v=spf1 include:spf2.outlook.com ~all
- yahoo-verification-key=Pm5lFTRzbI18fVkBYZbU7sPM8r8rPij2jvVrsAYiLto=
SPF Includes
- spf2.outlook.com
Related Domains by Mail Server
12 other domains also
use nam.olc.protection.outlook.com
as their mail server.
Domain Network
Connections between domains, mail servers, nameservers, and shared infrastructure.
FAQ
Is outlook.co a disposable email provider?
outlook.co has not yet been classified. It is currently unknown whether it is a disposable email provider.
Can I use outlook.co for account registration?
We have not yet verified outlook.co. Proceed with caution or use our API to check programmatically.
How can I block disposable emails from outlook.co?
Use the Trashmail-Blacklist API to check outlook.co before accepting it in your application. Send a GET request to /check/json/outlook.co 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 outlook.co?
outlook.co 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 outlook.co before they reach your database.