Alchemy integration
Alchemy is a blockchain development platform that provides powerful APIs and…
- Provider
- alchemy
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 36 available
Quick start
Call Alchemy from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Alchemy's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"ALCHEMY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Alchemy API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
36 actions exposed via the
Alchemy integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
ALCHEMY_COMPUTE_RARITY_V3 -
ALCHEMY_GET_COLLECTION_METADATA -
ALCHEMY_GET_COLLECTIONS_FOR_OWNER -
ALCHEMY_GET_CONTRACT_METADATA_BATCH_V3 -
ALCHEMY_GET_CONTRACT_METADATA_V3 -
ALCHEMY_GET_CONTRACTS_FOR_OWNER_V3 -
ALCHEMY_GET_FLOOR_PRICE_V3 -
ALCHEMY_GET_HISTORICAL_PRICES -
ALCHEMY_GET_NFT_CONTRACTS_BY_ADDRESS -
ALCHEMY_GET_NFT_METADATA -
ALCHEMY_GET_NFT_METADATA_BATCH -
ALCHEMY_GET_NFT_SALES_V3
Show all 36 actions
-
ALCHEMY_GET_NF_TS_FOR_COLLECTION_V3 -
ALCHEMY_GET_NF_TS_FOR_CONTRACT -
ALCHEMY_GET_NF_TS_FOR_OWNER -
ALCHEMY_GET_OWNERS_FOR_COLLECTION -
ALCHEMY_GET_OWNERS_FOR_CONTRACT -
ALCHEMY_GET_OWNERS_FOR_NFTV3 -
ALCHEMY_GET_PORTFOLIO_NF_TS_BY_ADDRESS -
ALCHEMY_GET_PRICES_BY_SYMBOL -
ALCHEMY_GET_TOKEN_BALANCES -
ALCHEMY_GET_TOKEN_BALANCES_BY_ADDRESS -
ALCHEMY_GET_TOKEN_METADATA -
ALCHEMY_GET_TOKEN_PRICES_BY_ADDRESS -
ALCHEMY_GET_TOKENS_BY_ADDRESS -
ALCHEMY_GET_TRANSACTION_COUNT -
ALCHEMY_GET_TRANSACTIONS_HISTORY_BY_ADDRESS -
ALCHEMY_INVALIDATE_CONTRACT_V3 -
ALCHEMY_IS_AIRDROP -
ALCHEMY_IS_AIRDROP_NFT -
ALCHEMY_IS_HOLDER_OF_COLLECTION -
ALCHEMY_IS_HOLDER_OF_CONTRACT -
ALCHEMY_IS_SPAM_CONTRACT -
ALCHEMY_IS_SPAM_CONTRACT_V3 -
ALCHEMY_SEARCH_CONTRACT_METADATA_V3 -
ALCHEMY_SUMMARIZE_NFT_ATTRIBUTES
Build with Alchemy
Open OverSkill, describe what you want to build, and reference Alchemy in your prompt — the AI will wire up the integration automatically.