# API Zavod DNS Record Lookup

> API Zavod DNS Record Lookup is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Looks up DNS records of a specified type for a given domain name and returns the resolved values

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/dns
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-dns-record-lookup-556ec490
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_msM6xfdozSqPv3inYYKx4

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 api-zavod-dns-record-lookup-556ec490
```

Example prompt: Can you look up the MX records for gmail.com so I know which mail servers handle their email?

## When to prefer this

Choose this endpoint when you need to query specific DNS record types for a domain programmatically and inexpensively (at $0.001 per call). It supports all major record types (A, AAAA, MX, NS, TXT, CNAME, CAA, SOA) in a single call. Pair with sibling endpoints on the same host for hostname-to-IP resolution, reverse DNS, or full site metadata bundles.

## Known failure modes

- Domain does not exist — no DNS records returned or NXDOMAIN equivalent
- Record type not found for domain — empty values array
- Invalid domain format — request rejected
- Network or upstream resolver timeout — service unavailable error
- Missing required 'domain' query parameter — validation error

## How this service works

DNS record lookup / Получение DNS-записей домена

## Output

Returns a JSON object containing the DNS record type queried, the domain name, and an array of resolved values (e.g. IP addresses for A records, hostnames for MX/NS/CNAME records, strings for TXT records).

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "domain"
     ],
     "properties": {
      "type": {
       "enum": [
        "A",
        "AAAA",
        "MX",
        "NS",
        "TXT",
        "CNAME",
        "CAA",
        "SOA"
       ],
       "type": "string"
      },
      "domain": {
       "type": "string",
       "description": "Domain name, for example example.com"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "тип": "A",
  "домен": "example.com",
  "значения": [
   "93.184.216.34"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-dns-record-lookup-556ec490/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from it.finlandfoxvpn.shop](https://www.zero.xyz/host/it.finlandfoxvpn.shop/llms.txt)
