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

# Aave Supported Tokens

> Returns the list of supported tokens on Aave for the specified network, along
with key metadata.

For each token, the response includes:
- The symbol and contract address.
- Whether the token is currently enabled for supplying (depositing).
- Whether it is enabled for borrowing.



## OpenAPI

````yaml /v1/combined_spec.json get /v1/aave/aave_supported_tokens
openapi: 3.1.0
info:
  title: Compass API
  description: Compass Labs DeFi API
  version: 0.0.1
servers:
  - url: https://api.compasslabs.ai
    description: Production server
security:
  - ApiKeyAuth: []
paths:
  /v1/aave/aave_supported_tokens:
    get:
      tags:
        - Aave V3
      summary: Aave Supported Tokens
      description: >-
        Returns the list of supported tokens on Aave for the specified network,
        along

        with key metadata.


        For each token, the response includes:

        - The symbol and contract address.

        - Whether the token is currently enabled for supplying (depositing).

        - Whether it is enabled for borrowing.
      operationId: v1_aave_aave_supported_tokens
      parameters:
        - name: chain
          in: query
          required: true
          schema:
            type: string
            enum:
              - arbitrum
              - base
              - ethereum
            title: Chain
            default: arbitrum
        - name: block
          in: query
          required: false
          schema:
            anyOf:
              - type: integer
              - type: 'null'
            title: Block
          description: Optional block number (defaults to latest).
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AaveSupportedTokensResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      x-codeSamples:
        - lang: python
          label: Python (SDK)
          source: |-
            from compass_api_sdk import CompassAPI, models


            with CompassAPI(
                api_key_auth="<YOUR_API_KEY_HERE>",
            ) as compass_api:

                res = compass_api.aave_v3.aave_aave_supported_tokens(chain=models.V1AaveAaveSupportedTokensChain.ARBITRUM)

                # Handle response
                print(res)
        - lang: typescript
          label: Typescript (SDK)
          source: |-
            import { CompassApiSDK } from "@compass-labs/api-sdk";

            const compassApiSDK = new CompassApiSDK({
              apiKeyAuth: "<YOUR_API_KEY_HERE>",
            });

            async function run() {
              const result = await compassApiSDK.aaveV3.aaveAaveSupportedTokens({
                chain: "arbitrum",
              });

              console.log(result);
            }

            run();
components:
  schemas:
    AaveSupportedTokensResponse:
      properties:
        tokens:
          items:
            $ref: '#/components/schemas/AaveSupportedTokenMetadata'
          type: array
          title: Tokens
          description: >-
            List of supported tokens with configuration metadata for a given
            chain.
      type: object
      required:
        - tokens
      title: AaveSupportedTokensResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AaveSupportedTokenMetadata:
      properties:
        symbol:
          type: string
          title: Symbol
          description: Token symbol (e.g., 'WETH', 'DAI').
        address:
          type: string
          title: Address
          description: Token contract address.
        supplying_enabled:
          type: boolean
          title: Supplying Enabled
          description: Whether the token can be used as collateral.
        borrowing_enabled:
          type: boolean
          title: Borrowing Enabled
          description: Whether the token can be borrowed.
      type: object
      required:
        - symbol
        - address
        - supplying_enabled
        - borrowing_enabled
      title: AaveSupportedTokenMetadata
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your Compass API Key. Get your key
        [here](https://www.compasslabs.ai/dashboard).

````