Skip to main content
GET
/
v1
/
providers
Get all providers
curl --request GET \
  --url https://api.yield.xyz/v1/providers \
  --header 'x-api-key: <api-key>'
{
  "total": 100,
  "offset": 0,
  "limit": 20,
  "items": [
    {
      "name": "Morpho",
      "id": "morpho",
      "logoURI": "https://morpho.xyz/logo.png",
      "description": "A peer-to-peer DeFi lending protocol",
      "website": "https://morpho.xyz",
      "tvlUsd": "10,200,000",
      "type": "protocol",
      "references": [
        "<string>"
      ]
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://yieldxyz.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

Query Parameters

offset
number
default:0

Offset for pagination

Required range: x >= 0
limit
number
default:20

Number of items per page

Required range: 1 <= x <= 100

Response

List of providers

total
number
required

Total number of items available

Example:

100

offset
number
required

Offset of the current page

Example:

0

limit
number
required

Limit of the current page

Example:

20

items
object[]