Discover/CryptoSlate API
live

CryptoSlate APIcryptoslate.com

Access real-time crypto rankings, coin details, market overviews, company directory, search, and news from CryptoSlate via 6 structured API endpoints.

Endpoint health
verified 4d ago
get_coin_rankings
search
get_coin_detail
list_companies
get_news_articles
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the CryptoSlate API?

The CryptoSlate API exposes 6 endpoints covering real-time cryptocurrency rankings, detailed coin metrics, global market statistics, a company directory, site-wide search, and paginated news articles. The get_coin_rankings endpoint returns up to 100 coins by default, each with price, 24-hour and 7-day percent changes, market cap, and volume. The get_coin_detail endpoint adds team members, project descriptions, and external links for individual assets.

Try it
Predefined view to filter coins.
api.parse.bot/scraper/3a4163d1-d299-40d9-b829-bf7de4890e7e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3a4163d1-d299-40d9-b829-bf7de4890e7e/get_coin_rankings?view=gainers' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace cryptoslate-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.cryptoslate_api import CryptoSlate, CoinSummary, Coin, CoinMetrics, CoinView, MarketOverview, TopCoin, SearchMatch, Article, Company

cs = CryptoSlate()

# Get global market overview
overview = cs.marketoverviews.get()
print(overview.market_cap, overview.btc_dominance, overview.volume_24h, overview.cryptos)

for tc in overview.top_coins[:3]:
    print(tc.name, tc.ticker, tc.price, tc.change)

# List top gainers using enum
for coin in cs.coinsummaries.list(view=CoinView.GAINERS):
    print(coin.name, coin.symbol, coin.slug, coin.price, coin.change_24h, coin.market_cap)

# Get detailed coin info by slug
btc = cs.coins.get(slug="bitcoin")
print(btc.name, btc.slug, btc.about)
print(btc.metrics.coin_rank, btc.metrics.coin_price_usd, btc.metrics.coin_market_cap_usd)
print(btc.metrics.coin_percent_change_24h, btc.metrics.coin_available_supply)

for member in btc.team:
    print(member.name, member.role)

# Navigate from summary to full detail
for summary in cs.coinsummaries.list():
    detail = summary.details()
    print(detail.name, detail.metrics.coin_price_usd, detail.metrics.coin_24h_volume_usd)
    break

# Search across the platform
for match in cs.searchmatches.search(query="ethereum"):
    print(match.title, match.url, match.badge, match.type, match.group)

# Browse company directory
for company in cs.companies.list(category="crypto-exchanges"):
    print(company.name, company.slug)

# Latest news articles
for article in cs.articles.list(category="bitcoin"):
    print(article.title, article.slug, article.url)
All endpoints · 6 totalmissing one? ·

Get real-time cryptocurrency rankings with market data. Returns top 100 coins by default, or filtered by view type (gainers, losers, volume, recent). Each coin includes name, symbol, slug, price, percent changes over multiple timeframes, market cap, and 24-hour volume.

Input
ParamTypeDescription
viewstringPredefined view to filter coins.
Response
{
  "type": "object",
  "fields": {
    "coins": "array of coin ranking objects with name, symbol, slug, price, change_24h, change_7d, change_30d, market_cap, volume_24h",
    "total": "integer count of coins returned"
  },
  "sample": {
    "data": {
      "coins": [
        {
          "name": "Bitcoin",
          "slug": "bitcoin",
          "price": "$61,172.58",
          "symbol": "BTC",
          "change_7d": "-8.58%",
          "change_24h": "-2.60%",
          "change_30d": "-24.32%",
          "market_cap": "$1.23T",
          "volume_24h": "$36.06B"
        }
      ],
      "total": 100
    },
    "status": "success"
  }
}

About the CryptoSlate API

Coin Rankings and Detail

get_coin_rankings returns an array of coin objects sorted by market cap by default. The optional view parameter accepts predefined filters — gainers, losers, volume, and recent — letting you scope the result set without post-processing. Each object includes name, symbol, slug, price, change_24h, change_7d, change_30d, market_cap, and volume_24h. get_coin_detail accepts a slug (e.g. bitcoin, solana) and returns richer data: a team array with names and roles, an about description string, a links object mapping label to URL, and a metrics block with fields like coin_rank, coin_price_usd, coin_market_cap_usd, coin_24h_volume_usd, and percentage changes.

Market Overview and Company Directory

get_market_overview takes no inputs and returns global figures: cryptos (count of tracked assets), market_cap, volume_24h, btc_dominance, and a top_coins array with per-coin price and change. list_companies pulls from the CryptoSlate Directory. The category parameter accepts vertical slugs such as crypto-exchanges, mining, or wallets, and defaults to crypto exchanges when omitted. Results are paginated via the page parameter and return company name and slug pairs.

Search and News

search accepts a free-text query and returns categorized matches across coins, companies, people, and news. Each result includes title, url, type, badge, meta, and group fields, with a total count at the top level. get_news_articles returns paginated article listings — title, slug, and url per item — and accepts an optional category slug (e.g. bitcoin, regulation) to filter coverage.

Reliability & maintenanceVerified

The CryptoSlate API is a managed, monitored endpoint for cryptoslate.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cryptoslate.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official cryptoslate.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track real-time price movements and percent changes across the top 100 cryptocurrencies using get_coin_rankings.
  • Build a coin profile page pulling team members, project descriptions, and official links via get_coin_detail.
  • Display a live market dashboard with BTC dominance, total market cap, and 24h volume from get_market_overview.
  • Populate a crypto company directory filtered by vertical (exchanges, mining, wallets) using list_companies.
  • Implement site-wide keyword search across coins, companies, and news articles via the search endpoint.
  • Aggregate the latest crypto news by category (e.g. Ethereum regulation) using get_news_articles with the category param.
  • Monitor top gainers and losers on a given day by passing the view parameter to get_coin_rankings.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CryptoSlate offer an official developer API?+
CryptoSlate does not publish a documented public developer API. This Parse API provides structured access to the data available on the CryptoSlate website.
What does `get_coin_rankings` return and how can I filter it?+
By default it returns the top 100 coins by market cap. Each object includes name, symbol, slug, price, change_24h, change_7d, change_30d, market_cap, and volume_24h. Pass the optional view parameter with values like gainers, losers, volume, or recent to switch the sort context.
Does the API return historical price data or OHLCV candlesticks?+
Not currently. The API covers current price, 24h/7d/30d percent changes, market cap, and volume — all snapshot figures. You can fork it on Parse and revise it to add a historical data endpoint if CryptoSlate exposes that data on the site.
How does pagination work in `list_companies` and `get_news_articles`?+
list_companies and get_news_articles both accept an integer page parameter. Each response includes the current page value alongside the results array. Omitting page defaults to page 1. There is no total_pages field in the response, so you increment until the results array is empty or shorter than a full page.
Does the `get_coin_detail` endpoint return on-chain or exchange-level order book data?+
It does not. The metrics block covers price, market cap, 24h volume, coin rank, and percentage changes sourced from CryptoSlate's coin pages. Order book depth, on-chain transaction data, and exchange-specific trading pairs are not exposed. You can fork this API on Parse and revise it to pull from an endpoint that surfaces that information.
Page content last updated . Spec covers 6 endpoints from cryptoslate.com.
Related APIs in Crypto Web3See all →
cryptoslam.io API
Track NFT market trends and collection performance with access to global stats, collection rankings, sales history, and rarity data across multiple blockchains. Search collections, monitor top sales, and analyze blockchain performance metrics to stay informed on the NFT market.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.
theblock.co API
Access real-time cryptocurrency prices, breaking news, and in-depth research articles from The Block's crypto intelligence platform. Search and browse news by category, discover articles from expert authors, and learn about blockchain topics all in one place.
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.
cryptopanic.com API
Access real-time cryptocurrency market sentiment data from CryptoPanic. Retrieve news posts filtered by bullish or bearish sentiment, browse the full news feed with flexible filters, and fetch an aggregated sentiment score derived from 24-hour price movements across top cryptocurrencies.
airdrops.io API
Discover and track crypto airdrops in real-time by browsing latest opportunities, searching by category, and viewing detailed project information including participation requirements and token details. Monitor live cryptocurrency prices and stay updated on hot and potential airdrops all in one place.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
icodrops.com API
Access structured data on active, upcoming, and ended Initial Coin Offerings listed on icodrops.com. Retrieve project metadata including ticker, round type, raised amounts, investors, and ecosystems. Look up individual projects by slug or search across all listings by keyword.