Home hero background
  • rarity-sniper-logo
  • fractal-logo
  • hop-logo
  • collabland-logo
  • 0x-logo
  • circle-logo
  • polymarket logo
  • worldcoin-logo-full
  • opensea-logo
  • gitcoin logo
  • lido-logo
  • dydx-logo
  • synapse-logo
  • rarity-sniper-logo
  • fractal-logo
  • hop-logo
  • collabland-logo
  • 0x-logo
  • circle-logo
  • polymarket logo
  • worldcoin-logo-full
  • opensea-logo
  • gitcoin logo
  • lido-logo
  • dydx-logo
  • synapse-logo
  • dapper-labs-logo
  • trust-wallet-logo
  • gamestop-logo
  • bancor-logo
  • chainpass-logo
  • illuvium-logo
  • royal-logo
  • argent-logo
  • draft-kings-logo
  • gmx-logo
  • ledger-logo
  • shopify-logo
  • aave-logo
  • dapper-labs-logo
  • trust-wallet-logo
  • gamestop-logo
  • bancor-logo
  • chainpass-logo
  • illuvium-logo
  • royal-logo
  • argent-logo
  • draft-kings-logo
  • gmx-logo
  • ledger-logo
  • shopify-logo
  • aave-logo
Desktop section background image

Powering global development onchain

$100+ Billion

Onchain transaction volume

$1.5 Billion

Royalties to NFT creators

100+ Million

End users
Desktop section background image

The node foundation you build everything on

supernode-icon

Supernode

Meet the web3 engine powering our suite of APIs. Read and write to the blockchain exactly as you want.

product-stack

Powerful write APIs for every use case

Smart Wallets

Smart Wallets

Securely onboard and activate users with no seed phrase or gas fees with easy-to-use, enterprise-grade wallets.

Account Contracts

Account Contracts

Optimized ERC-4337, ERC-6900, and EIP-7702 smart contract accounts.

Code preview

Copied
import { useAccount } from "@alchemy/aa-alchemy/react";
gas manager

Gas Manager

Get users to your magic moment faster by removing the biggest barrier with gas sponsorship.

Code preview

Copied
import { smartAccountClient } from "./smartAccountClient.ts"; // Send a sponsored UO from your smart account like this: const { hash } = await smartAccountClient.sendUserOperation({ target: "0xTargetAddress", data: "0xCallData", value: 0n, // value in bigint or leave undefined });
bundler icon

Bundler

Simulate and land transactions onchain, reliably at scale.

Transact

Transact

7.9x faster, 100% success rate. Transaction simulation, frontrunning protection, and real-time notifications.

Code preview

Copied
curl --request POST \ --url https://eth-mainnet.g.alchemy.com/v2/docs-demo \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "method": "alchemy_sendGasOptimizedTransaction" } '
Transaction Simulation

Transaction Simulation

Transact with confidence. Preview how transactions will behave onchain, and keep your assets safe.

Code preview

Copied
curl --request POST \ --url https://eth-mainnet.g.alchemy.com/v2/docs-demo \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "id": 1, "jsonrpc": "2.0", "method": "alchemy_simulateExecution", "params": [ { "from": "0xd8da6bf26964af9d7eed9e03e53415d37aa96045", "to": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "value": "0x0", "data": "0xa9059cbb000000000000000000000000fc43f5f9dd45258b3aff31bdbe6561d97e8b71de00000000000000000000000000000000000000000000000000000000000f4240" } ] } '

Reliable read APIs

Subgraphs

Subgraphs

Ship faster with a custom API for your onchain data. Never worry about subgraph downtime or lag again.

Code preview

Copied
cd <SUBGRAPH_DIRECTORY> graph deploy <SUBGRAPH_NAME> \ --version-label <VERSION_NAME> \ --node https://subgraphs.alchemy.com/api/subgraphs/deploy \ --deploy-key <DEPLOY_KEY> --ipfs https://ipfs.satsuma.xyz
NFT API Logo

NFT API

The multichain API to launch, verify, analyze, trade and display NFTs.

Code preview

Copied
curl --request GET \ --url 'https://eth-mainnet.g.alchemy.com/nft/v3/docs-demo/getNFTsForOwner?owner=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045&amp;withMetadata=true&amp;pageSize=100' \ --header 'accept: application/json'
Token API

Token API

The token data your users expect, no token list required. Available on all EVM-supported chains.

Code preview

Copied
curl --request POST \ --url https://eth-mainnet.g.alchemy.com/v2/docs-demo \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "id": 1, "jsonrpc": "2.0", "method": "alchemy_getTokenBalances", "params": [ "0x95222290DD7278Aa3Ddd389Cc1E1d165CC4BAfe5", "erc20" ] } '
Custom Webhooks

Custom Webhooks

Infinite data access, precise filter controls.

Code preview

Copied
curl --request POST \ --url https://dashboard.alchemy.com/api/graphql/variables/variable \ --header 'content-type: application/json'
Transfers API

Transfers API

100x faster than others. One request to get all historical transaction activity, including internal transfers.

Code preview

Copied
curl --request POST \ --url https://eth-mainnet.g.alchemy.com/v2/docs-demo \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "id": 1, "jsonrpc": "2.0", "method": "alchemy_getAssetTransfers", "params": [ { "fromBlock": "0x0", "toBlock": "latest", "toAddress": "0x5c43B1eD97e52d009611D89b74fA829FE4ac56b1", "withMetadata": false, "excludeZeroValue": true, "maxCount": "0x3e8" } ] } '
Websockets Icon

Smart Websockets

Scalable. Customizable. Easy to set up. Websocket notifications for web3 actions you care about.

Code preview

Copied
// initiate websocket stream first wscat -c wss://eth-mainnet.g.alchemy.com/v2/demo // then call subscription {"jsonrpc":"2.0","id": 1, "method": "eth_subscribe", "params": ["logs", {"address": "0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48", "topics": ["0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef"]}]}
Webhooks

Webhooks

Fast, consistent push notifications. Zero missed updates. Massive savings.

Code preview

Copied
curl --request POST \ --url https://dashboard.alchemy.com/api/create-webhook \ --header 'accept: application/json' \ --header 'content-type: application/json' \ --data ' { "network": "ETH_MAINNET", "webhook_type": "GRAPHQL" } '
Desktop section background image

Driving web3 growth

$1.5B+trading volume

"Working with Alchemy has helped us save the equivalent of 3 full-time engineers, who otherwise would have to be heads down on infra maintenance, at all times."

Evgeny Yurtaev

CEO & Co-founder
Zerion

3.5M+wallets integrated

Infrastructure that’s both reliable and scalable, so that we can stay up when our customers need us most - that’s huge for Collab.Land. Alchemy is the GOAT here.

Raymond Feng

CTO and Co-founder
CollabLand-logo

100k+users served

Alchemy's AA infra has played a crucial role in powering CyberAccount, contributing massively to our ability to serve hundreds of thousands of users in real time. Their team's quick response times and attention to detail have been fundamental to our success.

Ryan Li

Co-founder
cyberconnect-logo

Alchemy SDK

Query blockchain data with two lines of code

Tab image

Account Abstraction SDK

Simplify account abstraction development

Image component (mobile)

Developer Tools

alchemy dashboard app overview page
send
Desktop section background image

Plans built for many teams

Developer-first pricing

Free
$0

Web3’s most powerful free tier.

Start building
For companies like:
brawler-bearz.svg
Pay As You Go
Most flexible
$5
11M CUs

Pay for what you use. No monthly fees.

Start building
For companies like:
crossmint-logo-icon.svg
Enterprise
Discounts available
Custom

The VIP service. Dedicated support engineers, SLAs, custom throughput, volume discounts, and more...

Get in touch
For companies like:
opensea logo
Desktop section background image

Build blockchain magic

Get your API key

相关内容推荐

移风易俗树新风儿科实习周记实习生简历怎么写工作证明怎么开红色之旅手抄报心沟通催货函弟子规解释童年第九章读后感骑车的拼音怎么写少先队手抄报内容悲伤造句风声的拟声词孙膑的故事期末总结200字外出考察学习方案宋文博蜗牛的本领罚款通知单金刚经全文学习典型案例形容稀少的成语社区公章用英语介绍一本书温情作文600字家长反思自然科学论文预备党员自我介绍乐园游发展党员制度新闻报道范文经营计划招聘广告英语咏鹅教案销售日报感恩公司食材配送服务方案项目竣工验收报告感谢卡大型活动应急预案等待的等怎么写六百字退休仪式流程选人用人风气自我探索小结幼儿园师德孝道感悟与心得森林日记创新型企业励志教育主题班会安全反思心得体会平行与垂直评课稿健康讲座主持词收款委托书范本名言警句及感悟反恐演练总结家族聚会发言稿典型发言自信的素材品牌授权书模板安全生产工作简报5月丁香教师招聘自我介绍考核结果怎么写观察日记小乌龟朝花夕拾琐记好句英语议论文模板业务合作协议什么的作业教师实习日志圣经诗歌找成语选人用人风气公司请假理由失败的经历计算机建模男人不流泪对友谊的看法企业社会责任报告质保书模板招商引资调研报告安全官向上人生路三字经节选市民文明公约青蓝计划网络交往的利与弊影视解析电信委托书仰卧起坐怎么写谚语用英语怎么说观沧海是哪个海质保协议赞美老师的词语自主实习理由工作介绍生日宴会任免文件范本优秀毕业论文金色的鱼钩的故事综合考核墓志铭范文精选资金使用计划酒店运营西游记感悟50字律所合伙人制度斩钉截铁造句北京传统文化成功经理人商业活动名人逸事说课稿ppt小学立定跳远教案公司愿景怎么写参会人员名单格式描写秋雨的词语廉洁故事读后感关于剑的成语微分享部门团建团员代表发言稿熟练反义词重阳节活动标题附录格式文明行车微课程设计方案安全月校企合作产教融合厨房十不准十必须谈谈社会公德党员发展大会我和我的新时代专利怎么写开业启事范文师德师风考核方案记忆中的你作文家庭的故事六月激情和平积弊设备吊装邮票怎么写设计报告酒店好评模版交通安全教育培训参会人员名单格式甘肃印象新高校老师饮酒其五拼音版新思想心得体会军事思想名词解释设计岗位职责牛王经朝花夕拾原文报销申请廉政谈话表态发言班委会会议记录抓住未来名人故事400字乡村振兴建设乒乓球比赛主题教育案例分析二年级的手工制作实践探索关于春天的儿歌防水工程施工方案责任议论文英语作文我的一周回到学校我为安全献一计赞美学校的作文我一定要水之语工伤证人证言模板草的英文怎么读顶撞老师的检讨书再塑生命的人教案spa协议用心体会政工师论文善良的小妹应彩云优质课师德师风演讲题目培训议程人物介绍模板小狗的故事软件授权书成绩证明模板草莓像什么遨游大海大班建构区教案华为快充协议教研室活动记录业务能力自我评价成长足迹怎么写招新德育目标离开的英文短语文化的传承与创新聆听讲座故事狼来了

站外内容推荐
慈喀SEO百科 | 网站建设制作 | 网站seo优化 | 百度seo公司 | SEO学堂 | 网站SEO优化 | 动画城资源 | 百度seo公司 | 北极图库 | SEO工具 | 百度关键词排名优化 | 德赛环球网 | 网站设计制作 | 营销型网站设计 | 天津万源聚 | seo营销推广 | 天津万源聚 | 个人网站建设 | 优化网站关键词 | 百度seo公司 | SEO学堂