# API Zavod – Hostname to IP Resolution

> API Zavod – Hostname to IP Resolution is a paid API for AI agents from it.finlandfoxvpn.shop, paid per call via x402, $0.001/call, status down (last checked 2026-09-15).

Resolves a domain name to its IP address(es) via a simple GET request

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/host/resolve
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-hostname-to-ip-resolution-357f1d6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lK6SeGGWhuF3HcWO8Iolu

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-hostname-to-ip-resolution-357f1d6f
```

Example prompt: What IP address does the domain example.com resolve to?

## When to prefer this

Use this endpoint when you need a quick, low-cost DNS A-record resolution to convert a hostname into one or more IP addresses. It is ideal for lightweight network diagnostics, configuration verification, or enriching data pipelines with IP information. Choose this over a full DNS record lookup endpoint when you only need the IP and not TXT, MX, or CNAME records.

## Known failure modes

- Invalid or non-existent domain returns an empty IP array or error response
- Network timeout if the upstream DNS resolution is slow
- Malformed domain input may return a 400-level error
- Domains with no A records (e.g. MX-only domains) may return empty results

## How this service works

Hostname to IP resolution / Получение IP домена

## Output

Returns a JSON object containing the queried domain name, an array of resolved IP addresses, and a count of how many IPs were returned (e.g. {"ip": ["93.184.216.34"], "домен": "example.com", "количество": 1})

## 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": {
      "domain": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ip": [
   "93.184.216.34"
  ],
  "домен": "example.com",
  "количество": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-hostname-to-ip-resolution-357f1d6f/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)
