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

# Strategy Info

> Fetch detailed information for a specific strategy



## OpenAPI

````yaml get /eigenlayer/strategy-info
openapi: 3.0.1
info:
  title: OpenAPI Rescan Explorer
  description: Api reference for the Rescan Explorer
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.blockflow.network/rest
security: []
paths:
  /eigenlayer/strategy-info:
    get:
      summary: Strategy Info
      description: Fetch detailed information for a specific strategy
      operationId: getStrategyDetail
      parameters:
        - name: strategy
          in: query
          description: The strategy address (required)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Detailed information about the strategy
          content:
            application/json:
              schema:
                type: object
                properties:
                  strategy:
                    type: string
                  token:
                    type: string
                  whitelisted:
                    type: boolean
                  thirdPartyTransfersForbidden:
                    type: boolean
                  withdrawalDelayBlocks:
                    type: integer
                  tvl:
                    type: number
                  withdrawals:
                    type: number
                  createdAt:
                    type: object
                    properties:
                      blockNumber:
                        type: string
                      blockTimestamp:
                        type: string
                      transactionHash:
                        type: string
                  updatedAt:
                    type: object
                    properties:
                      blockNumber:
                        type: string
                      blockTimestamp:
                        type: string
                      transactionHash:
                        type: string
        '400':
          description: Bad request, strategy address is required
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
        '404':
          description: Strategy not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                  message:
                    type: string

````