Discover/theblock.co API
live

theblock.co APItheblock.co

Access The Block's crypto news articles, market prices, category feeds, and educational content via 7 structured endpoints. Search by keyword or browse by category.

Endpoints
7
Updated
3mo ago
Try it
Numeric post ID (e.g. '401341'). Obtain from get_latest_news, search_articles, or get_news
api.parse.bot/scraper/9d5ad629-5416-44ff-a5ca-dcd60f1937f9/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9d5ad629-5416-44ff-a5ca-dcd60f1937f9/get_article?post_id=401341' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Extract full article content by post ID. Returns the article title, body content, authors, category, tags, related tokens, and related posts.

Input
ParamTypeDescription
post_idrequiredstringNumeric post ID (e.g. '401341'). Obtain from get_latest_news, search_articles, or get_news_by_category results.
Response
{
  "type": "object",
  "fields": {
    "id": "integer post identifier",
    "url": "string canonical article URL",
    "tags": "array of tag objects with id, name, slug",
    "intro": "string HTML intro/quick-take section",
    "title": "string article headline",
    "tokens": "array of related token objects",
    "authors": "array of author objects with name, url, and slug",
    "content": "string HTML body of the article",
    "excerpt": "string short excerpt",
    "category": "object with name, url, id, and description",
    "subtitle": "string or null subtitle",
    "updated_at": "string or null ISO 8601 update timestamp",
    "description": "string or null meta description",
    "published_at": "string ISO 8601 publish timestamp",
    "related_posts": "array of related post objects"
  },
  "sample": {
    "data": {
      "id": 401341,
      "url": "https://www.theblock.co/post/401341/senate-banking-committee-advances-landmark-crypto-market-structure-bill-garners-some-democratic-support",
      "tags": [
        {
          "id": 143,
          "name": "CFTC",
          "slug": "cftc"
        }
      ],
      "intro": "<h4>Quick Take</h4><ul><li>...</li></ul>",
      "title": "Senate Banking Committee advances landmark crypto market structure bill",
      "tokens": [],
      "authors": [
        {
          "id": 8673,
          "name": "Sarah Wynn",
          "slug": "sarah-wynn"
        }
      ],
      "content": "<p>Article HTML content...</p>",
      "excerpt": "Landmark legislation to regulate the digital asset industry...",
      "category": {
        "id": 55001,
        "name": "Policy"
      },
      "subtitle": null,
      "updated_at": null,
      "description": null,
      "published_at": "2026-05-14T13:01:21-04:00",
      "related_posts": []
    },
    "status": "success"
  }
}

About the theblock.co API

The Block API exposes 7 endpoints covering crypto news, token market data, and educational content from theblock.co. The get_article endpoint returns full HTML body, authors, tags, related tokens, and category metadata for any article by post ID. Other endpoints cover paginated news feeds, category browsing, keyword search, per-token price history, and structured learn content — all returning typed JSON fields ready for direct integration.

News and Article Endpoints

The get_latest_news endpoint returns the 10 most recent articles with fields including id, title, url, primaryCategory, and publishedFormatted. Use those id values to call get_article, which returns the full article: title, content (HTML body), intro (HTML quick-take), excerpt, authors (name, url, slug), tags (id, name, slug), tokens (related cryptocurrencies), and a category object with name, url, id, and description. The get_news_by_category endpoint accepts a category_slug parameter — valid values include markets, legal, funds, companies, stablecoins, policy, and web3 — and supports page and size pagination parameters. It returns the same article summary shape plus a category object with pageMeta and slug fields.

Search and Discovery

The search_articles endpoint accepts a query string (e.g., 'bitcoin' or 'ethereum ETF') and returns a count integer plus a results array. Each result includes id, title, url, authors, publishedFormatted, and primaryCategory, making it straightforward to surface relevant articles and then fetch full content with get_article.

Cryptocurrency Price Data

The get_cryptocurrency_prices endpoint returns a paginated list of tokens ranked by market cap. Each token in tableAssets carries id, title, token_symbol, a tokenData object (current price, market cap), and a tokenHistory array of price points. The tokenHomepage object includes total market cap change percentages. Pass size and start to paginate. Once you have a numeric token ID, get_token_price_detail returns granular fields: current_price, market_cap, price_change_percentage_24h, high_24h, low_24h, and a tokenHistory time series.

Educational Content

The get_learn_articles endpoint returns structured learning content from The Block's learn section. The response includes a data object with posts grouped by topic sections (such as Latest, Companies, and Consensus Mechanisms), along with navigation menu items and SEO meta fields. It takes no input parameters and returns the full current state of the learn catalog in one call.

Common use cases
  • Aggregate crypto news by category using get_news_by_category with slugs like markets or policy for topic-specific feeds.
  • Build a crypto price dashboard using get_cryptocurrency_prices for ranked token data and get_token_price_detail for 24h high/low and price history.
  • Monitor breaking coverage of specific tokens by searching with search_articles and filtering results by primaryCategory.
  • Extract author attribution and related tokens from articles via get_article to build entity-level coverage graphs.
  • Populate a crypto knowledge base using get_learn_articles topic sections like Consensus Mechanisms or Companies.
  • Track article publication cadence per category by combining get_news_by_category pagination fields (totalPosts, totalPages) with publishedFormatted timestamps.
  • Enrich internal research tools by resolving article tags and tokens fields from get_article responses.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 The Block have an official developer API?+
The Block does not publish a documented public developer API for external use. This API on Parse provides structured access to the same news, price, and educational data available on theblock.co.
What does `get_article` return beyond the article body?+
get_article returns the full HTML content and intro, plus an authors array (each with name, url, slug), a tags array (id, name, slug), a tokens array of related cryptocurrencies, an excerpt, and a category object with name, url, id, and description. You need a numeric post_id, which you can get from get_latest_news, search_articles, or get_news_by_category.
How current is the price data from `get_cryptocurrency_prices`?+
The endpoint reflects prices and market cap data as shown on The Block's prices page, which sources data from CoinGecko. The range field in the response indicates the time window (e.g., '1D'). The API does not expose tick-level trade data or order book depth — it covers summary market data at the token level.
Can I retrieve comments or reader reactions on articles?+
Not currently. The API covers article content, metadata, authors, tags, related tokens, and category data. Comments and reader engagement metrics are not included in any endpoint's response. You can fork this API on Parse and revise it to add an endpoint targeting that data if it is accessible on the source.
Does `get_news_by_category` support all categories on The Block's site?+
The endpoint documents these valid category_slug values: markets, legal, funds, companies, stablecoins, policy, and web3. Categories outside that set may not return results. You can fork this API on Parse and revise it to test additional slugs or add support for categories not currently listed.
Page content last updated . Spec covers 7 endpoints from theblock.co.
Related APIs in Crypto Web3See all →
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
ens.vision API
Search and explore ENS domains across the marketplace, discover owner portfolios and activity feeds, and resolve names to addresses with complete text records. Get domain details, browse categories, view offers and recommendations, and track all marketplace listings in one place.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.
crypto-fundraising.info API
Track cryptocurrency fundraising activity by searching projects and investors, viewing deal details, and staying updated with the latest crypto funding news and top active venture funds. Monitor major fundraising rounds, explore investor portfolios, and research emerging crypto projects all in one place.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
The Block API – Crypto News & Prices · Parse