> ## 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.

# List all agents

> Returns the full agent registry with slug, name, and country for each agent.



## OpenAPI

````yaml /zh/scraping-api/openapi.json get /network/agents
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/agents:
    get:
      tags:
        - Network
      summary: List all agents
      description: >-
        Returns the full agent registry with slug, name, and country for each
        agent.
      operationId: list_agents
      responses:
        '200':
          description: Agent list.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentListResponse'
        '401':
          description: Missing or invalid API key.
components:
  schemas:
    AgentListResponse:
      type: object
      properties:
        total:
          type: integer
        nodes:
          type: array
          items:
            type: object
            properties:
              slug:
                type: string
                description: Node slug, e.g. de1.
              name:
                type: string
                description: Full node name, e.g. scraping-de1.
              country:
                type: string
                description: ISO country code.
  securitySchemes:
    ApiKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key passed in the X-API-Key header.

````