๐ธTransaction Screening API This endpoint allows you to view all available cryptocurrencies to ensure that the selected network corresponds to a valid asset. URL: https://app.rillis.io/api/v1/resources/validation/coinsRequest# Body Parameters# Parameter Type Required Description client_id String Yes Your unique client identifier. client_secret String Yes Your secret key for API authentication.
Example Request (All Cryptocurrencies)# {
"client_id" : "your_client_id" ,
"client_secret" : "your_client_secret"
} Response# A successful request will return a JSON response with array contains the following properties: Parameter Type Description network String The blockchain network (e.g., "Bitcoin", "Ethereum"). networkShort String Short code for the network. assets Array List of assets available on this network.
Example Response (All Cryptocurrencies)# [
{
"network" : "Bitcoin" ,
"networkShort" : "BTC" ,
"assets" : [
"BTC"
]
} ,
{
"network" : "Ethereum" ,
"networkShort" : "ETH" ,
"assets" : [
"ETH" ,
"USDT" ,
"USDC"
]
}
] Error Responses# In case of an error, the API will return an appropriate HTTP status code along with a JSON response containing error details: Status Code Description 400 Bad Request - The request was invalid or cannot be processed. 401 Unauthorized - Authentication credentials are missing or invalid. 403 Forbidden - The client does not have permission to access the requested resource. 429 Too Many Requests - The client has sent too many requests in a given amount of time. 500 Internal Server Error - An error occurred on the server.
Example Error Response# {
"success" : false ,
"error" : "Invalid network" ,
"error_code" : "INVALID_PARAMETER" ,
"details" : "The specified network is not supported"
} Major Supported Networks# Network Native Asset Description Bitcoin BTC The original cryptocurrency blockchain. Ethereum ETH A decentralized, open-source blockchain with smart contract functionality. Binance Smart Chain BNB A blockchain network built for running smart contract-based applications. Solana SOL A high-performance blockchain supporting smart contracts and decentralized applications. Cardano ADA A proof-of-stake blockchain platform with multi-layer architecture. Ripple XRP A digital payment protocol and cryptocurrency designed for financial transactions. Polygon MATIC A Layer 2 scaling solution for Ethereum that enables faster and cheaper transactions. Avalanche AVAX A platform for launching decentralized applications and enterprise blockchain deployments.
Common Tokens# Token Network Description USDT Multiple Tether USD, a stablecoin pegged to the US dollar. USDC Multiple USD Coin, a stablecoin pegged to the US dollar. DAI Ethereum A decentralized stablecoin pegged to the US dollar. LINK Ethereum Chainlink, a decentralized oracle network. UNI Ethereum Uniswap, a decentralized exchange protocol. AAVE Ethereum Aave, a decentralized lending protocol.
Rate Limits# Maximum of 100 requests per minute.
Maximum of 1,000 requests per hour.
Maximum of 10,000 requests per day.
Exceeding these limits will result in a 429 Too Many Requests response. Modified atย 2026-02-05 20:51:40