Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/yearn-info-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: Yearn Finance yDaemon REST Chains Info API
description: The primary REST API for Yearn Finance, providing access to vault data, APY calculations, TVL metrics, strategy information, and protocol analytics across all supported EVM networks including Ethereum, Optimism, Polygon, Fantom, Base, and Arbitrum. Used by the production Yearn frontends.
version: 1.0.0
contact:
name: Yearn Finance
url: https://yearn.fi
license:
name: GNU Affero General Public License v3.0
url: https://github.com/yearn/ydaemon/blob/main/LICENSE
x-twitter: iearnfinance
servers:
- url: https://ydaemon.yearn.fi
description: Production yDaemon API
tags:
- name: Info
description: Protocol information and metadata
paths:
/info/chains:
get:
operationId: getSupportedChains
summary: Get supported chains
description: Returns the list of blockchain networks supported by the yDaemon API, including Ethereum, Optimism, Polygon, Fantom, Base, and Arbitrum, along with their RPC and contract configuration data.
tags:
- Info
responses:
'200':
description: An object mapping chain IDs to chain configuration data.
content:
application/json:
schema:
$ref: '#/components/schemas/ChainsResponse'
/info/vaults/blacklisted:
get:
operationId: getBlacklistedVaults
summary: Get blacklisted vaults
description: Returns the list of vault contract addresses that are blacklisted and excluded from results across all supported networks.
tags:
- Info
responses:
'200':
description: An array of blacklisted vault contract addresses.
content:
application/json:
schema:
type: array
items:
type: string
pattern: ^0x[a-fA-F0-9]{40}$
description: EVM contract address of a blacklisted vault.
example:
- '0x6884bd538db61a626da0a05e10807bfc5aea2b32'
- '0xdb8bbf2b0e28721f9bac603e687e39bcf52201f8'
components:
schemas:
ChainInfo:
type: object
description: Configuration and metadata for a supported EVM chain.
properties:
ID:
type: integer
description: EVM chain ID.
example: 1
RpcURI:
type: string
format: uri
description: RPC endpoint URI for the chain.
SubgraphURI:
type: string
format: uri
description: The Graph subgraph URI for the chain.
EtherscanURI:
type: string
format: uri
description: Etherscan-compatible API URI.
MaxBlockRange:
type: integer
description: Maximum block range for log queries.
MaxBatchSize:
type: integer
description: Maximum batch size for multicall requests.
AvgBlocksPerDay:
type: integer
description: Average number of blocks per day on this chain.
CanUseWebsocket:
type: boolean
description: Whether WebSocket connections are supported.
LensContract:
$ref: '#/components/schemas/ChainContract'
MulticallContract:
$ref: '#/components/schemas/ChainContract'
YBribeV3Contract:
$ref: '#/components/schemas/ChainContract'
ChainsResponse:
type: object
description: Map of chain IDs to chain configuration objects.
properties:
chains:
type: object
description: An object where each key is a chain ID string and the value is a ChainInfo object.
additionalProperties:
$ref: '#/components/schemas/ChainInfo'
ChainContract:
type: object
description: A smart contract deployed on a chain.
properties:
Address:
type: string
pattern: ^0x[a-fA-F0-9]{40}$
description: Contract address.
Block:
type: integer
description: Block number at which the contract was deployed.
Version:
type: integer
description: Contract version number.
Tag:
type: string
description: Optional tag label for the contract.
Label:
type: string
description: Optional human-readable label.
externalDocs:
description: Yearn Finance Developer Documentation
url: https://docs.yearn.fi/developers/data-services/yearn-data