> ## Documentation Index
> Fetch the complete documentation index at: https://docs.55-tech.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Domain health

> Per-agent health state for a specific domain. Shows which agents are healthy, soft-blocked, or hard-blocked.



## OpenAPI

````yaml /zh/scraping-api/openapi.json get /network/health/{domain}
openapi: 3.1.0
info:
  title: 55 Tech Scraping API
  description: >-
    Distributed fetch network. Route HTTP, browser, WebSocket, and AMQP requests
    through 80+ geo-distributed agents with health-aware routing and block
    detection.
  version: 2.2.0
  contact:
    name: 55 Tech Support
    email: contact@55-tech.com
servers:
  - url: https://scraping-api.55-tech.com
    description: Production
security:
  - ApiKeyHeader: []
tags:
  - name: Fetch
    description: Proxy HTTP requests through the agent network.
  - name: Browser
    description: Fetch with full JavaScript rendering, cookies, and screenshots.
  - name: Network
    description: Agent registry, network status, and domain health.
  - name: AMQP
    description: AMQP/RabbitMQ consumer relay via SSE.
  - name: Usage
    description: Per-key usage metrics.
  - name: Debug
    description: Debug and diagnostic endpoints.
  - name: System
    description: Health checks and system endpoints.
paths:
  /network/health/{domain}:
    get:
      tags:
        - Network
      summary: Domain health
      description: >-
        Per-agent health state for a specific domain. Shows which agents are
        healthy, soft-blocked, or hard-blocked.
      operationId: domain_health
      parameters:
        - name: domain
          in: path
          required: true
          description: Domain to check (e.g. example.com).
          schema:
            type: string
      responses:
        '200':
          description: Domain health report.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DomainHealthResponse'
        '401':
          description: Missing or invalid API key.
components:
  schemas:
    DomainHealthResponse:
      type: object
      properties:
        domain:
          type: string
        nodes_checked:
          type: integer
        available:
          type: integer
        limited:
          type: integer
        unavailable:
          type: integer
        details:
          type: array
          items:
            type: object
            properties:
              node_id:
                type: string
              slug:
                type: string
              state:
                type: string
                enum:
                  - available
                  - limited
                  - unavailable
              rtt_ms:
                type: integer
              last_check:
                type: string
                format: date-time
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key passed in the X-API-Key header.

````