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

# List Delta solver agents

> List the active solver agents competing in the auction for a chain. Use the names to filter pricing via includeAgents / excludeAgents.



## OpenAPI

````yaml api-reference/specs/delta-v2.json GET /v2/delta/agents/list/{chainId}
openapi: 3.0.3
info:
  title: Velora Delta API V2
  version: 2.0.0
  description: >-
    Velora Delta API V2 — server-built EIP-712 orders, route-based pricing with
    alternatives, paginated order history, and a unified status model. Ships
    alongside Delta V1; both protocols share the same on-chain contracts.
servers:
  - url: https://api.velora.xyz
    description: Production
security: []
paths:
  /v2/delta/agents/list/{chainId}:
    get:
      summary: List active agents competing in the auction for a chain
      description: >-
        Use the names returned here to filter pricing via the `includeAgents` /
        `excludeAgents` params on `GET /v2/delta/prices`.
      operationId: deltaV2AgentsList
      parameters:
        - name: chainId
          in: path
          required: true
          schema:
            type: integer
            example: 1
      responses:
        '200':
          description: Array of agent names.
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '400':
          description: Unsupported chain

````