Get Started
Overview

Whisk contains a number of kits:
- Chain Kit: Chain metadata for all supported chains.
- Token Kit: Metadata, prices, and balances for thousands of tokens.
- Morpho Kit: Morpho vaults, markets, positions, and rewards.
- Identity Kit: Resolver for crypto-native identity systems across multiple ecosystems.
- And more...
Don't see a kit you need? Lets chat!
Playground
The Whisk GraphQL playground is the best way to explore the APIs comprehensive schema docs, and test queries:
Get your test API key
Book a quick call to discuss your use case, and get a trial API key to see if Whisk is the right fit for your application.
Add authorization header
In the Headers section of the playground, add the following:
Headers
{
"Authorization": "Bearer <YOUR_API_KEY>"
}Query the API
Try running a query like this:
Example Query
{
erc4626Vaults(where: { keys: [
{ chainId: 1, vaultAddress: "0x8c106EEDAd96553e64287A5A6839c3Cc78afA3D0", protocol: morpho_v2 }
{ chainId: 8453, vaultAddress: "0xbeeF010f9cb27031ad51e3333f9aF9C6B1228183", protocol: morpho_v1 }
] }) {
items {
name
totalAssets {
formatted
usd
}
}
}
}Example of how to use the playground:

Typescript SDK
The Whisk Typescript SDK provides a type-safe GraphQL client powered by gql.tada. See the SDK guide to get started.