---
title: "List all integrations"
method: GET
path: "/v1/integrations"
tags: ["Integrations", "Discovery"]
---

# List all integrations

`GET /v1/integrations`

Retrieve a list of available lending/borrowing integrations (e.g., Aave, Spark, Morpho) with their supported actions and networks.

## Response `200`

List of all integrations

- IntegrationDto[]
  - `id` string, required — Integration identifier
  - `providerId` string, required — Provider identifier
  - `name` string, required — Integration display name
  - `networks` string[], required — Supported networks
  - `metadata` IntegrationMetadataDto, required
    - `description` string, required — Integration description
    - `externalLink` string, required — External link to the protocol website
    - `logoURI` string, required — Protocol logo URI
  - `actions` ActionDefinitionDto[], required — Supported actions with labels and argument schemas
    - `id` 'supply' | 'borrow' | 'repay' | 'withdraw' | 'enableCollateral' | 'disableCollateral', required — Action identifier
    - `label` string, required — Human-readable action label
    - `schema` ArgumentSchemaDto, required
      - `type` object — Schema type
      - `properties` object — Schema properties (fields)
      - `required` string[] — Required field names
      - `additionalProperties` object — Allow additional properties
      - `items` ArgumentSchemaPropertyDto
        - `type` object — Property type
        - `description` string — Property description
        - `enum` string[] — Enum values
        - `default` object — Default value
        - `minimum` number — Minimum value
        - `maximum` number — Maximum value
        - `minLength` number — Minimum length
        - `maxLength` number — Maximum length
        - `pattern` string — Regex pattern
        - `items` ArgumentSchemaPropertyDto — recursive
        - `properties` object — Nested properties (for objects)
        - `required` string[] — Required nested fields
        - `additionalProperties` object — Additional properties allowed
        - `label` string — Field label for UI
        - `placeholder` string — Placeholder text
        - `optionsRef` string — Reference to dynamic options
        - `options` string[] — Static option values
      - `enum` string[] — Enum values
      - `default` object — Default value
      - `notes` string — Notes about this action schema

## Other responses

- `401` — Invalid or missing API key
- `429` — Rate limit exceeded

---

[API](https://skmtc.net/yield/apis/yield-xyz-api.md) · [All operations](https://skmtc.net/yield/apis/yield-xyz-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/yield/yield-xyz-api/versions/acfa80015ca5/schema)
