# API Zavod – Website HTTP Status & Response Time Checker

> API Zavod – Website HTTP Status & Response Time Checker 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).

Checks the HTTP status code and response time of any URL using a specified HTTP method

## Facts

- Endpoint: GET https://it.finlandfoxvpn.shop/api/v1/web/status
- 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-website-http-status-response-time-checker-6ce9842f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uD3mYNO4DgxB-ezDPEH2H

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-website-http-status-response-time-checker-6ce9842f
```

Example prompt: Can you do a GET request to https://example.com and tell me the HTTP status code and how many milliseconds it took to respond?

## When to prefer this

Choose this endpoint when you need a lightweight, single-call check of whether a URL is reachable and how fast it responds, without needing full redirect chain detail, DNS records, or page metadata. It's ideal for uptime monitoring, pre-flight checks before scraping, or quick health verification of an external resource. For fuller diagnostics (redirects, DNS, metadata), prefer the sibling 'comprehensive site bundle' endpoint.

## Known failure modes

- Invalid or malformed URL returns a validation error
- Unreachable hosts (connection timeout) may result in an error or non-standard status
- Only GET, HEAD, and DELETE methods are accepted — other methods return a validation error
- Missing required 'url' query parameter causes schema validation failure
- Very slow remote servers may cause upstream timeouts before a response is received

## How this service works

Website HTTP status and response time / HTTP-статус сайта

## Output

Returns a JSON object containing the HTTP status code, response time in milliseconds, the original requested URL, and the final resolved URL (after any redirects). Fields are labeled in Russian: время_мс (response time ms), http_статус (HTTP status), исходный_url (original URL), конечный_url (final URL).

## 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": {
  "время_мс": 50,
  "http_статус": 200,
  "исходный_url": "https://example.com/",
  "конечный_url": "https://example.com/"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-zavod-website-http-status-response-time-checker-6ce9842f/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)
