Sunday, June 8, 2025
Catatonic Times
No Result
View All Result
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert
No Result
View All Result
Catatonic Times
No Result
View All Result

Ronin API – Build on Ronin with Moralis

by Catatonic Times
May 28, 2025
in Web3
Reading Time: 8 mins read
0 0
A A
0
Home Web3
Share on FacebookShare on Twitter


Construct on the Ronin blockchain with Moralis’ Ronin API. Combine world-class token search performance, fetch insightful token analytics, get detailed buying and selling stats, question in-depth holder information, and far more – all with only a single request!

Introducing Moralis for Builders

Moralis is the business’s main crypto information supplier, that includes top-tier APIs and RPC nodes designed to streamline your developer expertise. Entry the instruments, information, and assets it’s essential energy your Ronin apps – multi functional place!

Listed below are six top-tier interfaces of Moralis’ Ronin API suite:

Token Search API: Seek for any token by identify, image, handle, or pair handle.

Token Holder API: Retrieve in-depth holder information for any token, together with prime holders, provide distribution, and extra particulars.

Get Tokens by Trade API: Observe tokens throughout all lifecycle phases on the Tama.meme platform.

Token Analytics API: Get wealthy analytics for any token, together with quantity, valuation, and transaction information.

Buying and selling Stats API: Question real-time and historic buying and selling stats for any chain or token class.

OHLCV API: Fetch open, excessive, low, and shut costs, together with quantity and swap metrics, for any token pair handle.

Let’s dive additional into these 5 APIs in separate sections!

Token Search API

The Token Search API helps you to discover any token by identify, image, handle, or pair handle, with real-time indexing, complete metadata, and good rating. One API name is all it takes to supercharge your Ronin undertaking with a world-class token search expertise! 

Right here’s why it’s best to use the Token Search API: 

Sensible Token Discovery: Search tokens by identify, image, handle, or pair handle, with assist for partial matches (e.g., ”easy” nonetheless finds Easy Love Potion (SLP)).

Wealthy Metadata: Obtain full metadata for all search outcomes, together with costs, logos, provide metrics, market cap, liquidity modifications, and extra.

Sorted Outcomes: Filter and kind by chain, quantity, liquidity, market cap, or verification standing to get exact, focused outcomes.

Enhance Verified Tokens: Prioritize verified tokens in search rating to show essentially the most related belongings first.

Cross-Chain Assist: Seek for tokens throughout a number of chains, together with Ronin, Solana, Ethereum, Polygon, BNB Sensible Chain (BSC), PulseChain, and lots of extra networks. 

With an outline, let’s take a look at the /tokens/search endpoint in motion: 

GET https://deep-index.moralis.io/api/v2.2/tokens/search

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/tokens/search?question=easy&chains=ronin&restrict=10&isVerifiedContract=true&sortBy=volume1hDesc&boostVerifiedContracts=true’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Operating the script above will return an array of tokens that match the desired question. Right here’s a pattern response: 

{
“complete”: 1,
“outcome”: [
{
“tokenAddress”: “0xa8754b9fa15fc18bb59458815510e40a12cd2014”,
“chainId”: “0x7e4”,
“name”: “Smooth Love Potion”,
“symbol”: “SLP”,
“blockNumber”: null,
“blockTimestamp”: 1619582048,
“usdPrice”: 0.001666089523260054,
“marketCap”: 68496495.71960256,
“experiencedNetBuyers”: {
“oneHour”: -3,
“oneDay”: 18,
“oneWeek”: 72
},
“netVolumeUsd”: {
“oneHour”: 4363.851271527781,
“oneDay”: 27361.968084649066
},
“liquidityChangeUSD”: {
“oneHour”: 23.619999999878928,
“oneDay”: -89246.36999999988
},
“usdPricePercentChange”: {
“oneHour”: -0.24434944648719614,
“oneDay”: -2.4752105229958654
},
“volumeUsd”: {
“oneHour”: 7004.389138665857,
“oneDay”: 118829.73713767418
},
“securityScore”: null,
“logo”: “https://d23exngyjlavgo.cloudfront.net/0x7e4_0xa8754b9fa15fc18bb59458815510e40a12cd2014”,
“isVerifiedContract”: true,
“fullyDilutedValuation”: 68495311.36653623,
“totalHolders”: 957751,
“totalLiquidityUsd”: 2032915.14
}
]
}

Discover the entire Search Tokens documentation or learn the Token Search API FAQ to be taught extra about this premier endpoint.

Token Holder API

With the Token Holder API, you’ll be able to simply fetch prime holders, distribution stats, acquisition information, and far more with only a single API name. Supercharge your Ronin undertaking with insightful holder information that helps customers assess market sentiment, monitor crypto whales, and determine potential centralization dangers. 

Listed below are 4 Token Holder API endpoints: 

/erc20/:token_address/house owners: Fetch a listing of prime token holders based mostly on present balances.

/erc20/:handle/holders: Get holder statistics for any token, together with complete holder rely, acquisition insights, distribution information, and extra. 

/erc20/:handle/holders/historic: Question historic holder statistics for a token over a specified timeframe. 

/discovery/tokens: Fetch a listing of filtered tokens based mostly on varied metrics and standards, akin to holder rely.

Let’s discover the Token Holder API additional by a script for fetching a token’s prime holders: 

GET https://deep-index.moralis.io/api/v2.2/erc20/:token_address/house owners

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/erc20/0xa8754b9fa15fc18bb59458815510e40a12cd2014/house owners?chain=ronin&order=DESC’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Operating the script above will return a listing of prime token holders, enriched with balances, provide percentages, and extra. Right here’s what it could possibly appear to be: 

{
“outcome”: [
{
“balance”: “11531801083”,
“balance_formatted”: “11531801083”,
“is_contract”: true,
“owner_address”: “0x5686ccb55ee86beb1e8a1cf7c769930f3a5e521c”,
“owner_address_label”: null,
“entity”: null,
“entity_logo”: null,
“usd_value”: “19214685.160048704594373703”,
“percentage_relative_to_total_supply”: 28.050125606432008
},
//…
]
}

To be taught extra about this API, please try the Get Token Holders documentation or learn the Token Holder API FAQ.

Get Tokens by Trade API

Observe tokens throughout a number of lifecycle phases on the Tama.meme platform. Fetch newly launched tokens, tokens within the bonding curve part, graduated tokens, and extra. This API offers the info essential to floor rising and evolving tokens, enabling customers to find new, thrilling alternatives in real-time.

Listed below are some outstanding endpoints you’ll doubtless discover attention-grabbing: 

/erc20/alternate/:alternate/new: Fetch an array of newly created tokens on the desired alternate.

/erc20/alternate/:alternate/bonding: Get a listing of tokens at the moment within the bonding curve part. 

/erc20/alternate/:alternate/graduated: Question an array of graduated tokens.

/erc20/:handle/bondingStatus: Fetch the bonding curve standing and progress for a token. 

With an outline, let’s take a look at the /erc20/alternate/:alternate/new endpoint in motion to spotlight the accessibility of this premier API: 

GET https://deep-index.moralis.io/api/v2.2/erc20/alternate/:alternate/new

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/erc20/alternate/tama.meme/new?chain=ronin&restrict=100’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the endpoint above will provide you with a listing of newly created Tama.meme tokens, full with addresses, logos, liquidity, costs, and far more. Right here’s a pattern response:

{
“outcome”: [
{
“tokenAddress”: “0xab7dd52b17ad2efc2f5f8395b2a5fdb61166a4ef”,
“name”: “POWER”,
“symbol”: “POWER”,
“logo”: null,
“decimals”: 18,
“priceNative”: “0.000003418398775005”,
“priceUsd”: “0.000002433401837792”,
“liquidity”: “2561.47”,
“fullyDilutedValuation”: “2433.401837792”,
“createdAt”: “2025-05-27T14:34:23.000Z”
},
//…
]
}

To be taught extra about these endpoints, try the Get Tokens by Trade documentation web page.

Token Analytics API

With the Token Analytics API, you’ll be able to pull wealthy insights on any token – together with quantity, valuation, and transaction metrics – with only one request. Energy your decentralized alternate (DEX) terminal, crypto screener, or dashboard with data-rich analytics that may assist your customers perceive token efficiency at a look.

Listed below are three Token Analytics API endpoints:

/tokens/:handle/analytics: Retrieve complete analytics for any token, together with complete quantity, transaction counts, valuation metrics, and extra.

/tokens/analytics: Question analytics for a number of tokens throughout completely different chains concurrently.

/tokens/analytics/timeseries: Get full timeseries analytics for a number of tokens throughout varied chains in a single request.

To point out you the way it works, we’ll now take a look at a fast instance highlighting the /tokens/:handle/analytics endpoint in motion: 

GET https://deep-index.moralis.io/api/v2.2/tokens/:handle/analytics

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/tokens/0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb/analytics?chain=ronin’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling the endpoint above will return a token analytics object, together with complete purchase quantity, complete promote quantity, consumers, sellers, totally diluted valuation (FDV), and different precious information. Right here’s a pattern response:

{
“tokenAddress”: “0xf988f63bf26c3ed3fbf39922149e3e7b1e5c27cb”,
“totalBuyVolume”: {
“5m”: 9.274676281893669,
“1h”: 135.28126166797534,
“6h”: 2292.314434310758,
“24h”: 11619.824832047578
},
“totalSellVolume”: {
“5m”: 0,
“1h”: 91.04758213147147,
“6h”: 5212.837069673436,
“24h”: 12582.605609863245
},
“totalBuyers”: {
“5m”: 1,
“1h”: 2,
“6h”: 17,
“24h”: 65
},
“totalSellers”: {
“5m”: 0,
“1h”: 1,
“6h”: 19,
“24h”: 59
},
“totalBuys”: {
“5m”: 1,
“1h”: 2,
“6h”: 29,
“24h”: 122
},
“totalSells”: {
“5m”: 0,
“1h”: 1,
“6h”: 26,
“24h”: 103
},
“uniqueWallets”: {
“5m”: 1,
“1h”: 3,
“6h”: 32,
“24h”: 106
},
“pricePercentChange”: {
“5m”: 0,
“1h”: 0,
“6h”: 0,
“24h”: 0
},
“usdPrice”: “0.001318361944832078”,
“totalLiquidityUsd”: “144794.03”,
“totalFullyDilutedValuation”: “1317965.372176714”
}

Try the Get Token Analytics documentation to be taught extra about this world-class API.

Buying and selling Stats API

The Buying and selling Stats API lets you retrieve real-time and historic buying and selling statistics by token class or chain. Get complete quantity, lively wallets, complete transactions, complete buys/sells, FDV, and extra, throughout a number of timeframes. Improve your crypto undertaking with insightful buying and selling stats for all main chains, together with Ronin, Solana, Ethereum, BSC, and quite a few different networks.

Listed below are the 4 endpoints of the Buying and selling Stats API: 

/quantity/chains: Get quantity stats, lively wallets, and complete transactions for all supported blockchains. 

/quantity/classes: Fetch quantity stats, purchaser/vendor counts, and the variety of transactions for various token classes. 

/quantity/timeseries: Question historic quantity, liquidity, and FDV information for chains in a specified timeframe.

/quantity/timeseries/:categoryId: Get historic purchase/promote quantity, liquidity, and FDV information for the particular token class inside a given time interval.

Let’s take a look at an instance to spotlight the ability of the Buying and selling Stats API. Right here’s how straightforward it’s to get buying and selling statistics for all main chains utilizing the /quantity/chains endpoint: 

GET https://deep-index.moralis.io/api/v2.2/quantity/chains

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/quantity/chains’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Operating the script above will give you quantity information, the whole transaction rely, and the variety of lively wallets throughout all main chains. Right here’s an instance of what the response will appear to be: 

{
“chains”: [
{
“chainId”: “0x7e4”,
“totalVolume”: {
“5m”: 1382.9518036941515,
“1h”: 21150.177399916567,
“6h”: 543631.8748517063,
“24h”: 5490615.340693714
},
“activeWallets”: {
“5m”: 42,
“1h”: 242,
“6h”: 1937,
“24h”: 7017
},
“totalTransactions”: {
“5m”: 68,
“1h”: 481,
“6h”: 4938,
“24h”: 24391
}
},
//…
]
}

Dive into the Get Quantity Stats documentation to be taught extra concerning the endpoints above.

OHLCV API

With the OHLCV API, you’ll be able to effortlessly fetch open, excessive, low, and shut costs, together with quantity and swap information, for any pair handle on Ronin. Make the most of this top-tier API to energy interactive candlestick charts that give your customers perception into each real-time and historic value information. 

Let’s take a look at the /pairs/:handle/ohlcv endpoint in motion to showcase the accessibility of the OHLCV API: 

GET https://deep-index.moralis.io/api/v2.2/pairs/:handle/ohlcv

import fetch from ‘node-fetch’;

const choices = {
technique: ‘GET’,
headers: {
settle for: ‘software/json’,
‘X-API-Key’: ‘YOUR_API_KEY’
},
};

fetch(‘https://deep-index.moralis.io/api/v2.2/pairs/0x8f1c5eda143fa3d1bea8b4e92f33562014d30e0d/ohlcv?chain=ronin&timeframe=1h&foreign money=usd&fromDate=2025-05-24T10percent3A00percent3A00.000&toDate=2025-05-25T10percent3A00percent3A00.000’, choices)
.then(response => response.json())
.then(response => console.log(response))
.catch(err => console.error(err));

Calling this endpoint returns a sequence of timestamps with OHLCV information for the desired token pair and interval. Right here’s a pattern response:

{
“web page”: 1,
“cursor”: null,
“pairAddress”: “0x8f1c5eda143fa3d1bea8b4e92f33562014d30e0d”,
“tokenAddress”: “0xa8754b9fa15fc18bb59458815510e40a12cd2014”,
“timeframe”: “1h”,
“foreign money”: “usd”,
“outcome”: [
{
“timestamp”: “2025-05-25T11:00:00.000Z”,
“open”: 0.00166964494581957,
“high”: 0.00166964494581957,
“low”: 0.001665827461773266,
“close”: 0.0016667894603035,
“volume”: 263.2630739304831,
“trades”: 20
},
//…
]
}

Try the Get OHLCV by Pair Deal with documentation to be taught extra about this endpoint. 

To be taught extra concerning the Ronin API and different highly effective options – together with learn how to get detailed portfolio information, decoded pockets historical past, real-time costs, NFTs, metadata, and far more – try the entire Ronin API documentation.

Able to construct on Ronin? 

Whether or not you’re powering a DEX, constructing an analytics dashboard, or creating the subsequent massive crypto app, Moralis’ Ronin API provides you the whole lot you want – multi functional place. Begin constructing smarter as we speak!



Source link

Tags: APIBuildMoralisRonin
Previous Post

XRP Holds Midline Support That Has Led To Breakout In The Past, Why $2.9 Could Be Next

Next Post

Weed Launches Global Well-Being Platform Powered by AI

Related Posts

Cudis Bets on Wearables, AI and a Solana Token to Drive the Longevity Movement
Web3

Cudis Bets on Wearables, AI and a Solana Token to Drive the Longevity Movement

June 8, 2025
Crypto Advocacy Groups Urge Dismissal of Case Against Bitcoin Mixer Samourai
Web3

Crypto Advocacy Groups Urge Dismissal of Case Against Bitcoin Mixer Samourai

June 7, 2025
Yield bearing stablecoin comes to Solana via Maple Finance’s Chainlink integration
Web3

Yield bearing stablecoin comes to Solana via Maple Finance’s Chainlink integration

June 7, 2025
How Circle’s IPO Stacks Up Against Other Crypto Market Debuts
Web3

How Circle’s IPO Stacks Up Against Other Crypto Market Debuts

June 6, 2025
VerifiedX Launches Vault Accounts – Setting a New Standard for Bitcoin Security
Web3

VerifiedX Launches Vault Accounts – Setting a New Standard for Bitcoin Security

June 6, 2025
Why Democrat Zoltan Istvan Is Backing Basic Income, Home Robots in California Governor Bid
Web3

Why Democrat Zoltan Istvan Is Backing Basic Income, Home Robots in California Governor Bid

June 5, 2025
Next Post
Weed Launches Global Well-Being Platform Powered by AI

Weed Launches Global Well-Being Platform Powered by AI

Is the US gonna buy 1 million Bitcoin

Is the US gonna buy 1 million Bitcoin

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Catatonic Times

Stay ahead in the cryptocurrency world with Catatonic Times. Get real-time updates, expert analyses, and in-depth blockchain news tailored for investors, enthusiasts, and innovators.

Categories

  • Altcoin
  • Analysis
  • Bitcoin
  • Blockchain
  • Crypto Exchanges
  • Crypto Updates
  • DeFi
  • Ethereum
  • Metaverse
  • NFT
  • Regulations
  • Scam Alert
  • Uncategorized
  • Web3

Latest Updates

  • Ethereum Enters Strategic Pause: Will Accumulation Below Resistance Spark A Surge?
  • Chainlink Bullish Signal Stands Firm, But Bitcoin Is Calling The Shots
  • The ‘Bitcoin Family’ has split and hidden seed phrase across 4 continents amid rising kidnappings
  • About Us
  • Advertise with Us
  • Disclaimer
  • Privacy Policy
  • DMCA
  • Cookie Privacy Policy
  • Terms and Conditions
  • Contact Us

Copyright © 2024 Catatonic Times.
Catatonic Times is not responsible for the content of external sites.

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • Home
  • Crypto Updates
  • Bitcoin
  • Ethereum
  • Altcoin
  • Blockchain
  • NFT
  • Regulations
  • Analysis
  • Web3
  • More
    • Metaverse
    • Crypto Exchanges
    • DeFi
    • Scam Alert

Copyright © 2024 Catatonic Times.
Catatonic Times is not responsible for the content of external sites.