# Domain Info Get {domain}

> Returns DNS records and availability status for the given domain.

- Skill: `gabrielmoreira/domain-info-get-domain` (Agent Skill)
- Install (CLI): `npx skillmds@latest add gabrielmoreira/domain-info-get-domain`
- Raw SKILL.md: https://api.skillmd.com/api/skills/gabrielmoreira/domain-info-get-domain/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Integrations & APIs
- Author: gabrielmoreira (https://skillmd.com/u/gabrielmoreira)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/gabrielmoreira/domain-info-get-domain

---


## Endpoint

**GET https://requiems.xyz/v1/networking/domain/{domain}**

## Get Domain Info

Returns DNS records and availability status for the given domain.

## Parameters

| Name | Type | Required | Location | Description |
| ---- | ---- | -------- | -------- | ----------- |
| `domain` | string | yes | path | The domain to look up (e.g. example.com) |

## Response Example

```json
{
  "data": {
    "domain": "example.com",
    "available": false,
    "dns": {
      "a": ["93.184.216.34"],
      "aaaa": ["2606:2800:220:1:248:1893:25c8:1946"],
      "mx": [],
      "ns": ["a.iana-servers.net.", "b.iana-servers.net."],
      "txt": ["v=spf1 -all"],
      "cname": ""
    }
  },
  "metadata": {
    "timestamp": "2026-01-01T00:00:00Z"
  }
}
```

## Response Fields

| Field | Type | Description |
| ----- | ---- | ----------- |
| `domain` | string | The domain that was looked up |
| `available` | boolean | True when the domain appears to be unregistered (NS lookup returns NXDOMAIN). False when name servers are delegated. |
| `dns.a` | array<string> | IPv4 addresses (A records) |
| `dns.aaaa` | array<string> | IPv6 addresses (AAAA records) |
| `dns.mx` | array<object> | Mail exchange records, each with host and priority fields |
| `dns.ns` | array<string> | Authoritative name server hostnames |
| `dns.txt` | array<string> | TXT record values (SPF, DKIM, verification tokens, etc.) |
| `dns.cname` | string | CNAME alias target, if the domain is an alias. Empty string when no alias exists. |

## Errors

- `400` **bad_request** — The domain parameter is not a valid hostname (e.g. missing TLD, invalid characters, or leading/trailing hyphens).

