Crypto avatar
Crypto

Pricing

$20.00/month + usage

Go to Store
Crypto

Crypto

Developed by

Maged

Maged

Maintained by Community

Best, most accurate, unlimited crypto currency market rates and updates in seconds

5.0 (1)

Pricing

$20.00/month + usage

0

Total users

2

Monthly users

2

Runs succeeded

>99%

Last modified

5 days ago

Crypto Rates Actor

Best, most accurate, unlimited crypto currency market rates and updates in seconds

Input Schema

{
"start": {
"type": "integer",
"description": "Starting point for pagination",
"default": 1
},
"limit": {
"type": "integer",
"description": "Number of cryptocurrencies to return",
"default": 100
},
"sort_by": {
"type": "string",
"description": "Field to sort by (e.g., 'rank', 'trending_24h', 'trending_7d', 'date_added', 'gainer_loser_24h')",
"default": "trending_24h"
},
"sort_type": {
"type": "string",
"description": "Sort direction ('asc' or 'desc')",
"default": "desc"
},
"convert": {
"type": "string",
"description": "Comma-separated list of currencies to convert to (e.g., 'USD,BTC,ETH')",
"default": "USD,BTC,ETH"
},
"crypto_type": {
"type": "string",
"description": "Type of cryptocurrencies to include",
"default": "all"
},
"tag_type": {
"type": "string",
"description": "Type of tags to include",
"default": "all"
},
"audited": {
"type": "boolean",
"description": "Whether to include only audited cryptocurrencies",
"default": false
},
"tag_slugs": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of tag slugs to filter by (e.g., ['defi', 'gaming'])"
}
}

if needed

use : https://apify.com/maged120/crypto-tags to get tag slugs with search functionality

use : https://apify.com/maged120/crypto-coins to get available crypto and normal names, codes, and ids currencies with search functionality,

Output Schema

Each cryptocurrency in the output dataset will have the following structure:

{
"id": "integer",
"name": "string",
"symbol": "string",
"slug": "string",
"cmcRank": "integer",
"marketPairCount": "integer",
"circulatingSupply": "number",
"totalSupply": "number",
"maxSupply": "number",
"ath": "number",
"atl": "number",
"high24h": "number",
"low24h": "number",
"isActive": "integer",
"lastUpdated": "string",
"dateAdded": "string",
"quotes": [
{
"name": "string",
"price": "number",
"volume24h": "number",
"volume7d": "number",
"volume30d": "number",
"marketCap": "number",
"percentChange1h": "number",
"percentChange24h": "number",
"percentChange7d": "number",
"percentChange30d": "number",
"percentChange60d": "number",
"percentChange90d": "number"
}
]
}

Examples

{
"audited": false,
"aux": [
"ath",
"atl",
"high24h",
"low24h",
"num_market_pairs",
"cmc_rank",
"date_added",
"max_supply",
"circulating_supply",
"total_supply",
"volume_7d",
"volume_30d",
"self_reported_circulating_supply",
"self_reported_market_cap"
],
"convert": [
"USD",
"BTC",
"ETH"
],
"limit": 100,
"sort_by": "trending_24h",
"sort_type": "desc",
"start": 1
}

2. Get top gainers in the last 24 hours

{
"sort_by": "gainer_loser_24h",
"sort_type": "desc",
"limit": 50
}

3. Get DeFi and Gaming tokens

{
"tag_slugs": ["defi", "gaming"],
"limit": 100
}

Sample Output

{
"id": 19055,
"name": "Solidus Ai Tech",
"symbol": "AITECH",
"slug": "solidus-ai-tech",
"cmcRank": 388,
"marketPairCount": 111,
"circulatingSupply": 1555002936.00000000,
"totalSupply": 1988441682.00000000,
"maxSupply": 2000000000.00000000,
"ath": 0.497635283658255550,
"atl": 0.012467981829482607,
"high24h": 0.057282612815260750,
"low24h": 0.054537326710932296,
"isActive": 1,
"lastUpdated": "2025-06-08T15:30:00.000Z",
"dateAdded": "2022-03-24T17:28:30.000Z",
"quotes": [
{
"name": "USD",
"price": 0.055449856100992810,
"volume24h": 18490808.88668825,
"volume7d": 119258052.43414714,
"volume30d": 508156408.49136771,
"marketCap": 86224689.037821332,
"percentChange1h": -0.17213412,
"percentChange24h": -2.98537770,
"percentChange7d": 13.72148980,
"percentChange30d": -1.14465915,
"percentChange60d": 189.29532475,
"percentChange90d": 118.52670284
}
]
}