# API Zavod – sitemap.xml Retrieval

> API Zavod – sitemap.xml Retrieval 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-14).

Fetches and returns the sitemap.xml file for a given website URL, reporting its HTTP status and whether it was found

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/web/sitemap
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-zavod-sitemap-xml-retrieval-75df146e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_F1nnaoL5DIKI8dijmeNxy

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-sitemap-xml-retrieval-75df146e
```

Example prompt: Can you check whether https://example.com has a sitemap.xml and tell me if it's accessible and what HTTP status it returns?

## When to prefer this

Use this endpoint when you need a quick, paid-per-call check on whether a specific website exposes a sitemap.xml and what its HTTP status is — ideal for SEO audits, web crawlers doing pre-flight checks, or monitoring pipelines that need to confirm sitemap availability without building custom HTTP tooling. Prefer this over general HTTP status checkers when you specifically want sitemap discovery semantics and a structured found/not-found response.

## Known failure modes

- Sitemap not found (404) — endpoint returns found=false with the HTTP status
- Target domain unreachable — connection timeout or DNS failure
- Invalid URL format provided — schema validation error
- Sitemap exists but returns non-200 status (e.g. 403 forbidden, 301 redirect) — status reported as-is

## How this service works

sitemap.xml retrieval / Получение sitemap.xml

## Output

Returns a JSON object containing the canonical sitemap.xml URL for the queried site, a boolean indicating whether the sitemap was found, and the HTTP status code received when attempting to fetch it.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "url": "https://example.com/sitemap.xml",
  "найден": true,
  "http_статус": 200
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-sitemap-xml-retrieval-75df146e/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)
