<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: mia0112</title>
    <description>The latest articles on DEV Community by mia0112 (@mia0112).</description>
    <link>https://dev.to/mia0112</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4009883%2F06d72aa7-a2ac-4625-b203-3800f4685f0e.jpg</url>
      <title>DEV Community: mia0112</title>
      <link>https://dev.to/mia0112</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mia0112"/>
    <language>en</language>
    <item>
      <title>How to Use Hyperliquid REST API with Goldrush</title>
      <dc:creator>mia0112</dc:creator>
      <pubDate>Mon, 06 Jul 2026 09:32:17 +0000</pubDate>
      <link>https://dev.to/mia0112/how-to-use-hyperliquid-rest-api-with-goldrush-3a92</link>
      <guid>https://dev.to/mia0112/how-to-use-hyperliquid-rest-api-with-goldrush-3a92</guid>
      <description>&lt;h2&gt;
  
  
  How to Use Hyperliquid REST API with Goldrush
&lt;/h2&gt;

&lt;p&gt;If you're building trading bots, dashboards, analytics tools, or portfolio trackers on Hyperliquid, you've probably used the official Info API (POST &lt;a href="https://api.hyperliquid.xyz/info" rel="noopener noreferrer"&gt;https://api.hyperliquid.xyz/info&lt;/a&gt;).&lt;br&gt;
While it works, it has several limitations:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Strict rate limits (1200 weight/min)&lt;/li&gt;
&lt;li&gt;Higher latency (~280ms)&lt;/li&gt;
&lt;li&gt;No batch queries for multiple wallets&lt;/li&gt;
&lt;li&gt;Limited historical data
&lt;strong&gt;Goldrush Hyperliquid Info API&lt;/strong&gt; solves all these problems. It is a byte-for-byte compatible drop-in replacement that is faster, has no rate limits, supports batch endpoints, and offers extended history.
New endpoint: &lt;a href="https://hypercore.goldrushdata.com/info" rel="noopener noreferrer"&gt;https://hypercore.goldrushdata.com/info&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Why Use Goldrush Instead of the Official Hyperliquid API?
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fu8c1ymjkysu6gj87qohd.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fu8c1ymjkysu6gj87qohd.jpg" alt=" " width="800" height="428"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Goldrush (powered by Covalent) provides a high-performance data layer specifically optimized for Hyperliquid. Key advantages include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;No rate limits&lt;/li&gt;
&lt;li&gt;Lower latency (&amp;lt;150ms p50)&lt;/li&gt;
&lt;li&gt;Batch queries (up to 50 wallets in one request)&lt;/li&gt;
&lt;li&gt;Extended historical data (fills, funding, etc.)&lt;/li&gt;
&lt;li&gt;Additional native endpoints (builder fills, batch states)&lt;/li&gt;
&lt;li&gt;Full compatibility with existing Hyperliquid SDKs&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Prerequisites
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Go to the &lt;a href="https://goldrush.dev/" rel="noopener noreferrer"&gt;https://goldrush.dev/&lt;/a&gt; and sign up for free.&lt;/li&gt;
&lt;li&gt;After logging in, navigate to API Keys and create a new key.&lt;/li&gt;
&lt;li&gt;Copy your API key (you'll use it as Bearer YOUR_KEY).&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  How to Make Requests to Goldrush Hyperliquid Info API
&lt;/h2&gt;

&lt;p&gt;All requests are POST requests to a single endpoint.&lt;br&gt;
&lt;strong&gt;Endpoint:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;POST https://hypercore.goldrushdata.com/info&lt;/code&gt;&lt;br&gt;
&lt;strong&gt;Required Headers:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Authorization: Bearer YOUR_GOLDRUSH_API_KEY&lt;/li&gt;
&lt;li&gt;Content-Type: application/json&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjsk20pkz1mh6k089jfgx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fjsk20pkz1mh6k089jfgx.png" alt=" " width="800" height="561"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Example Request Body:&lt;/strong&gt;&lt;br&gt;
&lt;code&gt;{&lt;br&gt;
  "type": "metaAndAssetCtxs",&lt;br&gt;
  "dex": ""&lt;br&gt;
}&lt;/code&gt;&lt;br&gt;
_Important: These endpoints only accept POST requests. Opening the URL directly in your browser will not work.&lt;br&gt;
_&lt;/p&gt;

&lt;h2&gt;
  
  
  Popular Endpoints with Examples
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Get Market Metadata + Live Data (Most Used)
&lt;strong&gt;Type&lt;/strong&gt;: metaAndAssetCtxs
&lt;strong&gt;Bash&lt;/strong&gt;:
&lt;code&gt;curl -X POST https://hypercore.goldrushdata.com/info \
-H "Authorization: Bearer YOUR_GOLDRUSH_API_KEY" \
-H "Content-Type: application/json" \
-d '{"type": "metaAndAssetCtxs", "dex": ""}'&lt;/code&gt;
&lt;strong&gt;Python Example:&lt;/strong&gt;
`import requests&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;url = "&lt;a href="https://hypercore.goldrushdata.com/info" rel="noopener noreferrer"&gt;https://hypercore.goldrushdata.com/info&lt;/a&gt;"&lt;br&gt;
headers = {&lt;br&gt;
    "Authorization": "Bearer YOUR_GOLDRUSH_API_KEY",&lt;br&gt;
    "Content-Type": "application/json"&lt;br&gt;
}&lt;br&gt;
payload = {"type": "metaAndAssetCtxs", "dex": ""}&lt;/p&gt;

&lt;p&gt;response = requests.post(url, headers=headers, json=payload)&lt;br&gt;
meta, asset_ctxs = response.json()`&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Get User Account State (Positions &amp;amp; Margin)
&lt;code&gt;{
"type": "clearinghouseState",
"user": "0xYourWalletAddress"
}&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Get User Fills History
&lt;code&gt;{
"type": "userFills",
"user": "0xYourWalletAddress"
}&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Batch Queries (Goldrush Exclusive Advantage)
Get states for up to 50 wallets in a single request:
&lt;code&gt;{
"type": "batchClearinghouseState",
"users": ["0xWallet1", "0xWallet2", "0xWallet3"]
}&lt;/code&gt;
Other useful types:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;spotMetaAndAssetCtxs&lt;/li&gt;
&lt;li&gt;l2Book&lt;/li&gt;
&lt;li&gt;candleSnapshot&lt;/li&gt;
&lt;li&gt;frontendOpenOrders&lt;/li&gt;
&lt;li&gt;userFillsByTime&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Using Goldrush with Official Hyperliquid SDKs
&lt;/h2&gt;

&lt;p&gt;You can use existing SDKs by simply changing the base URL.&lt;br&gt;
&lt;strong&gt;Python SDK Example:&lt;/strong&gt;&lt;br&gt;
`from hyperliquid.info import Info&lt;/p&gt;

&lt;p&gt;info = Info("&lt;a href="https://hypercore.goldrushdata.com" rel="noopener noreferrer"&gt;https://hypercore.goldrushdata.com&lt;/a&gt;", skip_ws=True)&lt;br&gt;
user_state = info.user_state("0xYourAddress")&lt;br&gt;
fills = info.user_fills("0xYourAddress")`&lt;br&gt;
&lt;em&gt;The same override works with JavaScript/TypeScript SDKs.&lt;/em&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Official Hyperliquid API vs Goldrush Comparison
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5uroo9n4qr6m4e5o8xox.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F5uroo9n4qr6m4e5o8xox.png" alt=" " width="799" height="545"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Example: Hyperliquid Dashboards Built with Goldrush
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fm3oe4p8spbwvvq65403x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fm3oe4p8spbwvvq65403x.png" alt=" " width="800" height="458"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Best Practices
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Even without rate limits, poll responsibly based on your use case.&lt;/li&gt;
&lt;li&gt;Use batch endpoints whenever querying multiple wallets.&lt;/li&gt;
&lt;li&gt;Handle errors properly:
&lt;em&gt;401 Unauthorized → Invalid or missing API key
400 unsupported_type → Unknown type value&lt;/em&gt;
&lt;/li&gt;
&lt;li&gt;Use userFillsByTime for historical data beyond the official limit.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Switching to Goldrush Hyperliquid Info API is one of the easiest and most impactful upgrades you can make when building on Hyperliquid.&lt;br&gt;
With just two small changes (new URL + Authorization header), you get a significantly faster, more reliable, and more powerful API — completely free of rate limits.&lt;br&gt;
Perfect for production-grade trading bots, dashboards, and analytics tools.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ready to get started?&lt;/strong&gt;&lt;br&gt;
Sign up for your free Goldrush API key here: &lt;a href="https://goldrush.dev/platform/auth/register/" rel="noopener noreferrer"&gt;https://goldrush.dev/platform/auth/register/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>hyperliquid</category>
      <category>python</category>
    </item>
    <item>
      <title>Best Multichain Blockchain Data APIs in 2026</title>
      <dc:creator>mia0112</dc:creator>
      <pubDate>Tue, 30 Jun 2026 16:14:04 +0000</pubDate>
      <link>https://dev.to/mia0112/best-multichain-blockchain-data-apis-in-2026-2n37</link>
      <guid>https://dev.to/mia0112/best-multichain-blockchain-data-apis-in-2026-2n37</guid>
      <description>&lt;p&gt;In 2026, building applications that work across multiple blockchains has become significantly more complex. Most developers face a common challenge: data is scattered across dozens or even hundreds of networks, and traditional approaches require managing separate connections, parsing raw data, and stitching information together manually. This process is time-consuming, error-prone, and difficult to scale.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbybccbdev6hmcxxdifsp.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fbybccbdev6hmcxxdifsp.jpeg" alt=" " width="799" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Multichain blockchain data APIs were created to solve this fragmentation. The best solutions in 2026 provide unified, structured access to wallet balances, transactions, logs, NFTs, pricing data, and real-time activity across a wide range of networks through a single, consistent interface.&lt;br&gt;
Among all available options, GoldRush (powered by Covalent) stands out as the most comprehensive and developer-friendly solution for teams that need broad multichain coverage without the complexity of managing multiple providers.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a Multichain Blockchain Data API?
&lt;/h2&gt;

&lt;p&gt;A &lt;strong&gt;multichain blockchain data API&lt;/strong&gt; allows developers to retrieve structured on-chain data from multiple blockchains without having to connect to each chain individually. Instead of dealing with raw RPC calls and custom parsing for every network, these APIs normalize data into a consistent format.&lt;br&gt;
This approach saves significant development time and reduces maintenance overhead, especially when building wallets, dashboards, analytics tools, or AI agents that need to operate across many chains.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why GoldRush is One of the Best Multichain Blockchain Data APIs in 2026
&lt;/h2&gt;

&lt;p&gt;GoldRush delivers one of the widest unified schemas available, supporting over 100 blockchains (including both EVM and non-EVM networks such as Ethereum, Solana, Base, Arbitrum, Bitcoin, and many others). Instead of requiring developers to write custom logic for each chain, GoldRush normalizes data into a consistent structure.&lt;br&gt;
Key advantages include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Unified REST API: The same endpoints work across all supported chains for balances, transactions, NFT metadata, decoded logs, and pricing data.&lt;/li&gt;
&lt;li&gt;Deep data coverage: Historical data from genesis blocks, decoded events, and normalized USD pricing are provided out of the box.&lt;/li&gt;
&lt;li&gt;Real-time capabilities: Streaming API (WebSocket) for live updates on wallet activity, new DEX pairs, and price movements.&lt;/li&gt;
&lt;li&gt;Advanced data pipelines: The Pipeline API allows pushing decoded and transformed data directly into databases or data warehouses (ClickHouse, Postgres, Kafka, etc.).&lt;/li&gt;
&lt;li&gt;Strong AI and agent support: Built-in MCP server and x402 protocol make it easy to integrate with AI agents for autonomous data querying.&lt;/li&gt;
&lt;li&gt;Developer-friendly tools: Includes SDKs, a powerful CLI (npx @covalenthq/goldrush-cli), and comprehensive documentation.
These features significantly reduce development time compared to most other providers, which often require multiple integrations, custom parsing, and ongoing maintenance.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21korm86vebh6awiqgxg.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F21korm86vebh6awiqgxg.jpeg" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How GoldRush Addresses Common Limitations
&lt;/h2&gt;

&lt;p&gt;Many existing solutions struggle with several recurring issues in multichain environments:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Incomplete visibility into native token movements (especially when tokens move through bridges, routers, or protocols without standard transfer logs).&lt;/li&gt;
&lt;li&gt;Inconsistent data structures across different chains.&lt;/li&gt;
&lt;li&gt;Limited historical depth or lack of decoded event data.&lt;/li&gt;
&lt;li&gt;Weak support for real-time updates and automated data pipelines.&lt;/li&gt;
&lt;li&gt;Poor readiness for AI/agent workflows.
GoldRush was specifically designed to overcome these challenges. Its unified approach and deep indexing capabilities (including traces and internal transfers) provide clearer, more complete data than what most other providers deliver through standard log-based indexing alone.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Comparison: GoldRush vs Most Other Providers
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6b0wkp68xqb58oafkf2g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F6b0wkp68xqb58oafkf2g.png" alt=" " width="800" height="985"&gt;&lt;/a&gt;&lt;br&gt;
GoldRush consistently delivers better results for teams that need reliable, structured data across many chains without managing multiple systems.&lt;/p&gt;

&lt;h2&gt;
  
  
  Real-World Use Cases
&lt;/h2&gt;

&lt;p&gt;GoldRush is particularly well-suited for:&lt;br&gt;
Multi-chain wallets and portfolio trackers: Retrieve balances, transaction history, and DeFi positions across dozens of networks with minimal code.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Tax and compliance tools: Access deep historical data and normalized pricing for accurate reporting.&lt;/li&gt;
&lt;li&gt;DeFi dashboards and explorers: Provide users with clean, real-time activity feeds and decoded events.&lt;/li&gt;
&lt;li&gt;AI-powered applications and agents: Leverage MCP and x402 support for autonomous on-chain data retrieval.&lt;/li&gt;
&lt;li&gt;Analytics and data pipelines: Use the Pipeline API to feed structured data directly into analytics infrastructure.
In each of these scenarios, GoldRush reduces engineering overhead and improves data quality compared to piecing together solutions from multiple providers.
&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fq4l5ftwqn0w7waen75ke.jpeg" alt=" " width="799" height="450"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Pricing and Getting Started
&lt;/h2&gt;

&lt;p&gt;GoldRush offers flexible plans suitable for different stages:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Free tier: 100,000 credits per month (sufficient for many development and small-scale projects).&lt;/li&gt;
&lt;li&gt;Vibe Coding plan: $10/month (ideal for indie developers and hobby projects).&lt;/li&gt;
&lt;li&gt;Professional plan: $250/month (higher limits and production-grade features).&lt;/li&gt;
&lt;li&gt;Enterprise (Inner Circle): Custom pricing with dedicated support and SLAs.
A 14-day trial with generous credits is also available. Getting started is straightforward with the official documentation at goldrush.dev and the easy-to-use CLI.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Future Outlook
&lt;/h2&gt;

&lt;p&gt;As the blockchain ecosystem continues to expand with new chains and more complex use cases, the demand for unified, reliable, and AI-ready data infrastructure will only grow. Solutions that can deliver consistent data across a wide range of networks while supporting modern workflows (including autonomous agents) will have a clear advantage.&lt;br&gt;
GoldRush is well-positioned in this evolving landscape thanks to its broad coverage, deep indexing capabilities, and strong focus on developer and AI experience.&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;In 2026, choosing the right multichain blockchain data API is critical for building scalable and efficient applications. GoldRush (powered by Covalent) stands out as one of the most complete solutions thanks to its wide chain coverage, unified schema, deep indexing capabilities, real-time features, and strong support for modern AI workflows.Whether you are developing wallets, dashboards, analytics tools, or AI-powered applications, GoldRush provides a reliable and developer-friendly foundation that can help accelerate your project while improving data quality.If you are looking for a robust multichain data API in 2026, GoldRush is currently one of the strongest options available.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
