Get list of earn providers
Get list of earn providers.
Note: This endpoint is currently in beta and might be subject to changes.
GET
TypeScript
Documentation Index
Fetch the complete documentation index at: https://developers.fireblocks.com/llms.txt
Use this file to discover all available pages before exploring further.
Query Parameters
Cursor for the next or previous page of results.
Number of items per page.
Required range:
1 <= x <= 100Field to sort results by.
Sort order (ASC or DESC).
Available options:
ASC, DESC Example:
"ASC"
Response
OK
Page of integrated lending providers.
Example:
[
{
"providerId": "MORPHO",
"displayName": "Morpho",
"logoUrl": "https://cdn.example.com/morpho.svg",
"supportedChainIds": [1, 8453],
"isTermsApprovalRequired": true,
"termsOfServiceUrl": "https://example.com/morpho/tos",
"isTermsOfServiceApproved": false
}
]Total number of items matching the query.
Example:
1
Opaque cursor for the next page; empty when there is no next page.
Example:
""
Opaque cursor for the previous page; empty when there is no previous page.
Example:
""
Previous
Approve earn provider terms of serviceApproves the lending provider's terms of service for this workspace. When
`isTermsApprovalRequired` is true on the provider (see list providers),
call this once before creating or executing earn actions with that provider.
After success, `GET /earn/providers` reflects `isTermsOfServiceApproved`.
**Note:** This endpoint is currently in beta and might be subject to changes.
Next
TypeScript