# DNS TXT Record Lookup

> DNS TXT Record Lookup is a paid API for AI agents from intel.rallylive.ca, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches all DNS TXT records for a domain, including SPF, DKIM, and SaaS verification tokens, with TTL values

## Facts

- Endpoint: GET https://intel.rallylive.ca/dns/txt
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dns-txt-record-lookup-582b8db3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pb2cERFnJSkGIiisexlFf

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability dns-txt-record-lookup-582b8db3
```

Example prompt: What DNS TXT records does stripe.com have? I want to see all their SPF entries and any SaaS verification tokens like Google, Microsoft, or Atlassian.

## When to prefer this

Use this endpoint when you specifically need DNS TXT records (SPF, DKIM, verification tokens) rather than a full DNS dump. It is more targeted than a general DNS lookup and is purpose-built for revealing which SaaS services a domain has verified, making it ideal for competitive intelligence, email security audits, and pre-sales research.

## Known failure modes

- Domain does not exist — returns empty or error response
- Domain has no TXT records — returns empty list
- Network timeout reaching authoritative DNS servers
- Invalid domain format provided in query
- Rate limit or payment failure for the $0.01 per call fee

## How this service works

DNS TXT record lookup: all TXT records for a domain (SPF, site-verification tokens for Google, Microsoft, Apple, Facebook, Stripe, Atlassian and others), with TTL. Reveals which SaaS services a company has verified. $0.01 per lookup.

## Output

Returns all DNS TXT records associated with the queried domain, including SPF records, DKIM entries, and site-verification tokens for SaaS platforms such as Google, Microsoft, Apple, Facebook, Stripe, and Atlassian, each with its TTL value.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dns-txt-record-lookup-582b8db3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from intel.rallylive.ca](https://www.zero.xyz/host/intel.rallylive.ca/llms.txt)
