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

# Retrieve all Liquid AVS Tokens (LATs)

> Returns all Liquid AVS Tokens (LATs). Optionally groups them by token type.



## OpenAPI

````yaml get /lat
openapi: 3.0.3
info:
  title: Area API
  description: >-
    Area is a decentralized, non-custodial liquid restaking protocol that allows
    users to directly restake into networks and services.
  version: 1.0.0
  license:
    name: MIT
    url: https://spdx.org/licenses/MIT.html
servers:
  - url: https://api.area.club
    description: Area Production API
security: []
paths:
  /lat:
    get:
      tags:
        - LAT
      summary: Retrieve all Liquid AVS Tokens (LATs)
      description: >-
        Returns all Liquid AVS Tokens (LATs). Optionally groups them by token
        type.
      operationId: getAllLats
      parameters:
        - in: query
          name: withGrouping
          description: Toggle whether the route should group LATs by their token groupings
          schema:
            type: string
            enum:
              - 'true'
              - 'false'
            default: 'false'
            description: >-
              Toggle whether the route should group LATs by their token
              groupings
            example: 'false'
      responses:
        '200':
          description: List of Liquid AVS Tokens (LATs)
          content:
            application/json:
              schema:
                anyOf:
                  - type: object
                    properties:
                      data:
                        type: array
                        items:
                          type: object
                          properties:
                            proxyAddress:
                              type: string
                              pattern: ^0x[a-fA-F0-9]{40}$
                              description: Proxy contract address of the LAT
                              example: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                            implementationAddress:
                              type: string
                              pattern: ^0x[a-fA-F0-9]{40}$
                              description: Implementation contract address of the LAT
                              example: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                            name:
                              type: string
                              description: The name of the LAT
                              example: EigenDA-ETH Liquid AVS Token
                            symbol:
                              type: string
                              description: The symbol of the LAT
                              example: xEigenDA-ETH
                            avsAddress:
                              type: string
                              pattern: ^0x[a-fA-F0-9]{40}$
                              description: Underlying AVS contract address
                              example: '0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552'
                            chainId:
                              type: number
                              description: The chain ID where the token is deployed
                              example: 1
                            maxNodes:
                              type: number
                              description: Maximum number of Staker Nodes allowed
                              example: 12
                            contractDeployments:
                              type: object
                              properties:
                                implementation:
                                  type: object
                                  additionalProperties:
                                    type: string
                                    pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Implementation contracts
                                  example:
                                    liquidTokenManager: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                proxy:
                                  type: object
                                  additionalProperties:
                                    type: string
                                    pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Proxy contracts
                                  example:
                                    liquidTokenManager: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                              required:
                                - implementation
                                - proxy
                            tokens:
                              type: array
                              items:
                                type: object
                                properties:
                                  address:
                                    type: string
                                    pattern: ^0x[a-fA-F0-9]{40}$
                                    description: Token contract address
                                    example: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                  strategyAddress:
                                    type: string
                                    pattern: ^0x[a-fA-F0-9]{40}$
                                    description: Strategy contract address
                                    example: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                  volatilityThreshold:
                                    type: string
                                    description: Volatility threshold for the token
                                    example: '700000000000000000'
                                  pricePerUnit:
                                    type: string
                                    description: Price per unit for the token
                                    example: '1020000000000000000'
                                  decimals:
                                    type: number
                                    description: Number of decimals for the token
                                    example: 18
                                required:
                                  - address
                                  - strategyAddress
                                  - volatilityThreshold
                                  - pricePerUnit
                                  - decimals
                              description: Tokens supported by the LAT
                          required:
                            - proxyAddress
                            - implementationAddress
                            - name
                            - symbol
                            - avsAddress
                            - chainId
                            - maxNodes
                            - contractDeployments
                            - tokens
                        description: Array of LATs
                    required:
                      - data
                  - type: object
                    properties:
                      data:
                        type: object
                        properties:
                          ETH:
                            type: array
                            items:
                              type: object
                              properties:
                                proxyAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Proxy contract address of the LAT
                                  example: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                implementationAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Implementation contract address of the LAT
                                  example: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                name:
                                  type: string
                                  description: The name of the LAT
                                  example: EigenDA-ETH Liquid AVS Token
                                symbol:
                                  type: string
                                  description: The symbol of the LAT
                                  example: xEigenDA-ETH
                                avsAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Underlying AVS contract address
                                  example: '0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552'
                                chainId:
                                  type: number
                                  description: The chain ID where the token is deployed
                                  example: 1
                                maxNodes:
                                  type: number
                                  description: Maximum number of Staker Nodes allowed
                                  example: 12
                                contractDeployments:
                                  type: object
                                  properties:
                                    implementation:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Implementation contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                    proxy:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Proxy contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                  required:
                                    - implementation
                                    - proxy
                                tokens:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      address:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Token contract address
                                        example: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                      strategyAddress:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Strategy contract address
                                        example: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                      volatilityThreshold:
                                        type: string
                                        description: Volatility threshold for the token
                                        example: '700000000000000000'
                                      pricePerUnit:
                                        type: string
                                        description: Price per unit for the token
                                        example: '1020000000000000000'
                                      decimals:
                                        type: number
                                        description: Number of decimals for the token
                                        example: 18
                                    required:
                                      - address
                                      - strategyAddress
                                      - volatilityThreshold
                                      - pricePerUnit
                                      - decimals
                                  description: Tokens supported by the LAT
                              required:
                                - proxyAddress
                                - implementationAddress
                                - name
                                - symbol
                                - avsAddress
                                - chainId
                                - maxNodes
                                - contractDeployments
                                - tokens
                            description: ETH-grouped LATs
                            example:
                              - proxyAddress: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                implementationAddress: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                name: EigenDA-ETH Liquid AVS Token
                                symbol: xEigenDA-ETH
                                avsAddress: '0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552'
                                chainId: 1
                                maxNodes: 12
                                contractDeployments:
                                  implementation:
                                    liquidTokenManager: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                  proxy:
                                    liquidTokenManager: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                tokens:
                                  - address: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                    strategyAddress: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                    volatilityThreshold: '700000000000000000'
                                    pricePerUnit: '1020000000000000000'
                                    decimals: 18
                          BTC:
                            type: array
                            items:
                              type: object
                              properties:
                                proxyAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Proxy contract address of the LAT
                                  example: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                implementationAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Implementation contract address of the LAT
                                  example: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                name:
                                  type: string
                                  description: The name of the LAT
                                  example: EigenDA-ETH Liquid AVS Token
                                symbol:
                                  type: string
                                  description: The symbol of the LAT
                                  example: xEigenDA-ETH
                                avsAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Underlying AVS contract address
                                  example: '0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552'
                                chainId:
                                  type: number
                                  description: The chain ID where the token is deployed
                                  example: 1
                                maxNodes:
                                  type: number
                                  description: Maximum number of Staker Nodes allowed
                                  example: 12
                                contractDeployments:
                                  type: object
                                  properties:
                                    implementation:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Implementation contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                    proxy:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Proxy contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                  required:
                                    - implementation
                                    - proxy
                                tokens:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      address:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Token contract address
                                        example: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                      strategyAddress:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Strategy contract address
                                        example: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                      volatilityThreshold:
                                        type: string
                                        description: Volatility threshold for the token
                                        example: '700000000000000000'
                                      pricePerUnit:
                                        type: string
                                        description: Price per unit for the token
                                        example: '1020000000000000000'
                                      decimals:
                                        type: number
                                        description: Number of decimals for the token
                                        example: 18
                                    required:
                                      - address
                                      - strategyAddress
                                      - volatilityThreshold
                                      - pricePerUnit
                                      - decimals
                                  description: Tokens supported by the LAT
                              required:
                                - proxyAddress
                                - implementationAddress
                                - name
                                - symbol
                                - avsAddress
                                - chainId
                                - maxNodes
                                - contractDeployments
                                - tokens
                            description: BTC-grouped LATs
                            example: []
                          Native:
                            type: array
                            items:
                              type: object
                              properties:
                                proxyAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Proxy contract address of the LAT
                                  example: '0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1'
                                implementationAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Implementation contract address of the LAT
                                  example: '0x93c4b944d05dfe6df7645a86cd2206016c51564d'
                                name:
                                  type: string
                                  description: The name of the LAT
                                  example: EigenDA-ETH Liquid AVS Token
                                symbol:
                                  type: string
                                  description: The symbol of the LAT
                                  example: xEigenDA-ETH
                                avsAddress:
                                  type: string
                                  pattern: ^0x[a-fA-F0-9]{40}$
                                  description: Underlying AVS contract address
                                  example: '0x2344c0fe02ccd2b32155ca0ffcb1978a6d96a552'
                                chainId:
                                  type: number
                                  description: The chain ID where the token is deployed
                                  example: 1
                                maxNodes:
                                  type: number
                                  description: Maximum number of Staker Nodes allowed
                                  example: 12
                                contractDeployments:
                                  type: object
                                  properties:
                                    implementation:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Implementation contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                    proxy:
                                      type: object
                                      additionalProperties:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                      description: Proxy contracts
                                      example:
                                        liquidTokenManager: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                  required:
                                    - implementation
                                    - proxy
                                tokens:
                                  type: array
                                  items:
                                    type: object
                                    properties:
                                      address:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Token contract address
                                        example: >-
                                          0x35f4f28a8d3ff20eed10e087e8f96ea2641e6aa1
                                      strategyAddress:
                                        type: string
                                        pattern: ^0x[a-fA-F0-9]{40}$
                                        description: Strategy contract address
                                        example: >-
                                          0x93c4b944d05dfe6df7645a86cd2206016c51564d
                                      volatilityThreshold:
                                        type: string
                                        description: Volatility threshold for the token
                                        example: '700000000000000000'
                                      pricePerUnit:
                                        type: string
                                        description: Price per unit for the token
                                        example: '1020000000000000000'
                                      decimals:
                                        type: number
                                        description: Number of decimals for the token
                                        example: 18
                                    required:
                                      - address
                                      - strategyAddress
                                      - volatilityThreshold
                                      - pricePerUnit
                                      - decimals
                                  description: Tokens supported by the LAT
                              required:
                                - proxyAddress
                                - implementationAddress
                                - name
                                - symbol
                                - avsAddress
                                - chainId
                                - maxNodes
                                - contractDeployments
                                - tokens
                            description: Native-grouped LATs
                            example: []
                        required:
                          - ETH
                          - BTC
                          - Native
                        description: Array of LATs grouped by
                    required:
                      - data
        '400':
          $ref: '#/components/responses/400'
        '401':
          $ref: '#/components/responses/401'
        '403':
          $ref: '#/components/responses/403'
        '404':
          $ref: '#/components/responses/404'
        '422':
          $ref: '#/components/responses/422'
        '429':
          $ref: '#/components/responses/429'
        '500':
          $ref: '#/components/responses/500'
components:
  responses:
    '400':
      description: >-
        The server cannot or will not process the request due to something that
        is perceived to be a client error (e.g., malformed request syntax,
        invalid request message framing, or deceptive request routing).
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - bad_request
                    description: A short code indicating the error code returned.
                    example: bad_request
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#bad_request
                required:
                  - code
                  - message
            required:
              - error
    '401':
      description: >-
        Although the HTTP standard specifies "unauthorized", semantically this
        response means "unauthenticated". That is, the client must authenticate
        itself to get the requested response.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - unauthorized
                    description: A short code indicating the error code returned.
                    example: unauthorized
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#unauthorized
                required:
                  - code
                  - message
            required:
              - error
    '403':
      description: >-
        The client does not have access rights to the content; that is, it is
        unauthorized, so the server is refusing to give the requested resource.
        Unlike 401 Unauthorized, the client's identity is known to the server.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - forbidden
                    description: A short code indicating the error code returned.
                    example: forbidden
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#forbidden
                required:
                  - code
                  - message
            required:
              - error
    '404':
      description: The server cannot find the requested resource.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - not_found
                    description: A short code indicating the error code returned.
                    example: not_found
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#not_found
                required:
                  - code
                  - message
            required:
              - error
    '422':
      description: >-
        The request was well-formed but was unable to be followed due to
        semantic errors.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - unprocessable_entity
                    description: A short code indicating the error code returned.
                    example: unprocessable_entity
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#unprocessable_entity
                required:
                  - code
                  - message
            required:
              - error
    '429':
      description: >-
        The user has sent too many requests in a given amount of time ("rate
        limiting")
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - rate_limit_exceeded
                    description: A short code indicating the error code returned.
                    example: rate_limit_exceeded
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#rate_limit_exceeded
                required:
                  - code
                  - message
            required:
              - error
    '500':
      description: The server has encountered a situation it does not know how to handle.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - internal_server_error
                    description: A short code indicating the error code returned.
                    example: internal_server_error
                  message:
                    type: string
                    description: A human readable explanation of what went wrong.
                    example: The requested resource was not found.
                  doc_url:
                    type: string
                    description: >-
                      A link to our documentation with more details about this
                      error code
                    example: >-
                      https://docs.eigenexplorer.com/api-reference/errors#internal_server_error
                required:
                  - code
                  - message
            required:
              - error

````