Discover/BCG API
live

BCG APIbcg.com

Retrieve BCG publication articles by slug. Returns title, authors, publish date, full body text, and exhibit/chart image URLs in one structured response.

This API takes change requests — .
Endpoint health
verified 2h ago
get_article
1/1 passing latest checkself-healing
Endpoints
1
Updated
2h ago

What is the BCG API?

The BCG.com API exposes 1 endpoint — get_article — that retrieves structured data from BCG publications, returning 5 response fields: article title, author list, publish date, full body text, and URLs for embedded exhibit and chart images. Give it a slug like 2026/digital-infrastructure-playbook and get back a complete, machine-readable representation of the publication without any HTML parsing on your end.

This call costs2 credits / call— charged only on success
Try it
Article slug path after /publications/ in the BCG URL (e.g. '2026/digital-infrastructure-playbook').
api.parse.bot/scraper/57e215b8-87ec-4f93-a54e-6e9d4c91e19d/<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/57e215b8-87ec-4f93-a54e-6e9d4c91e19d/get_article?slug=2026%2Fdigital-infrastructure-playbook' \
  -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 bcg-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.

"""Walkthrough: BCG Article API — fetch a publication and inspect its content."""
from parse_apis.bcg_com_api import BcgComApi, ArticleNotFound

client = BcgComApi()

# Fetch an article by its URL slug (path after /publications/).
try:
    article = client.articles.get(slug="2026/digital-infrastructure-playbook")
except ArticleNotFound:
    print("Article not found for the given slug.")
else:
    print(article.title)
    print("Published:", article.publish_date)
    print("Authors:", ", ".join(article.authors))
    # Show a snippet of the body text
    print(article.body_text[:200])
    # List exhibit/chart image URLs embedded in the article
    for url in article.exhibit_image_urls:
        print("Exhibit:", url)

print("exercised: articles.get")
All endpoints · 1 totalmissing one? ·

Retrieves a BCG publication article by its URL slug. Returns the article title, list of authors, publish date, full body text, and URLs of embedded chart/figure/exhibit images (excluding logos, icons, and avatars). The slug is the path portion after /publications/ in the article URL.

Input
ParamTypeDescription
slugrequiredstringArticle slug path after /publications/ in the BCG URL (e.g. '2026/digital-infrastructure-playbook').
Response
{
  "type": "object",
  "fields": {
    "title": "Article headline string",
    "authors": "Array of author name strings",
    "body_text": "Full article body text with paragraphs separated by double newlines",
    "publish_date": "ISO 8601 datetime string of publication",
    "exhibit_image_urls": "Array of URLs for chart/figure/exhibit images embedded in the article"
  },
  "sample": {
    "data": {
      "title": "The Digital Infrastructure Universe Continues to Expand. Here's How to Benefit.",
      "authors": [
        "Bora Goekbora",
        "Matt Kalmus",
        "Shashank Modi",
        "Alex Wright",
        "Clark O’Niell",
        "Scott Stemberger",
        "Thomas Bumberger",
        "Maxime Kern"
      ],
      "body_text": "The rules governing the ownership, valuation, management, and allocation of digital infrastructure have changed dramatically in recent years...",
      "publish_date": "2026-08-03T19:22:14.661",
      "exhibit_image_urls": [
        "https://web-assets.bcg.com/dims4/default/6b64e8b/2147483647/strip/true/crop/3600x2035+0+0/resize/1920x1085!/format/webp/quality/80/?url=http%3A%2F%2Fboston-consulting-group-brightspot.s3.amazonaws.com%2F50%2F1a%2F9a4a8d14459393686c86e8bfe617%2Fthe-digital-infrastructure-universe-continues-to-expand-heres-how-to-benefit-ex01.png"
      ]
    },
    "status": "success"
  }
}

About the BCG API

What the API returns

The get_article endpoint accepts a single required parameter — slug — which is the path segment appearing after /publications/ in any BCG.com article URL. For example, passing 2026/digital-infrastructure-playbook returns the full text of that report. The body_text field delivers the complete article body with paragraphs separated by double newlines, ready for text processing or storage.

Authors, dates, and exhibit images

Each response includes an authors array of name strings and a publish_date in ISO 8601 format, making it straightforward to sort or filter articles by recency or contributor. The exhibit_image_urls array contains direct URLs to the charts, figures, and exhibit images embedded in the article body. Logos, icons, and avatars are excluded, so the array contains only substantive visual content.

Coverage scope

The API covers articles published under BCG's /publications/ URL namespace. The slug format mirrors the BCG URL structure directly, so any publication URL you find on bcg.com can be queried by extracting the path after /publications/. There is no search or listing endpoint; you need a known slug to make a request.

Reliability & maintenanceVerified

The BCG API is a managed, monitored endpoint for bcg.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bcg.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 bcg.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
2h ago
Latest check
1/1 endpoint 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
  • Aggregate BCG research reports into an internal knowledge base, indexed by publish_date and authors.
  • Extract exhibit_image_urls to pull charts and figures into a slide deck or research dashboard.
  • Monitor specific BCG publications for updates by checking publish_date on a schedule.
  • Feed body_text into an NLP pipeline for topic modeling or entity extraction across consulting reports.
  • Build a citation tool that surfaces BCG article title and authors alongside retrieved report content.
  • Collect structured article metadata for competitive intelligence on BCG's published research themes.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does BCG have an official public developer API?+
BCG does not offer a public developer API for accessing publication content. There is no documented REST or GraphQL interface available to third-party developers on bcg.com.
What exactly is in the `exhibit_image_urls` array?+
It contains URLs for images that appear as charts, figures, or labeled exhibits within the article body. The endpoint filters out decorative assets — logos, author avatars, and interface icons are not included. The array may be empty for text-only articles that contain no embedded figures.
Can I search or list BCG articles without already knowing a slug?+
Not currently. The API covers article retrieval by slug only; there is no search endpoint or index listing available. You can fork it on Parse and revise it to add a search or listing endpoint.
Does the API return appendices, footnotes, or downloadable PDF content?+
Not currently. The response covers the main article body_text, authors, title, publish_date, and exhibit_image_urls. Appendices, footnotes, and linked PDF files are not part of the current response shape. You can fork it on Parse and revise it to add those fields if the source exposes them.
How should the slug be formatted for articles with nested paths?+
Pass the full path segment after /publications/, preserving any subdirectory structure. For the URL bcg.com/publications/2026/digital-infrastructure-playbook, the correct slug is 2026/digital-infrastructure-playbook.
Page content last updated . Spec covers 1 endpoint from bcg.com.
Related APIs in News MediaSee all →
mckinsey.com API
Retrieve article titles, author names, publication dates, and complete text content from McKinsey.com articles in seconds. Access comprehensive article information to integrate McKinsey insights into your research, content curation, or analysis workflows.
bleacherreport.com API
Access sports news articles, live scores, and detailed game statistics from Bleacher Report across all major leagues including the NBA, NFL, MLB, and NHL. Retrieve full article content, expert analysis, and box-score data for any supported sport and date.
grindr.com API
Access Grindr's public blog content by browsing posts with pagination and category filters, then read full articles on topics relevant to the community. Stay informed about news, updates, and stories directly from Grindr's official publications.
redlandshospital.org API
Stay informed about Redlands Community Hospital's latest developments by accessing their news and press releases, including service expansions, leadership changes, and patient experience initiatives. Personalize your healthcare outreach efforts with timely operational updates and announcements directly from the hospital.
billboard.com API
Get access to Billboard's music charts, latest news, and interviews to stay updated on chart rankings, industry stories, and artist content. Search and retrieve specific articles or page content to find the music news and information you need.
smashingmagazine.com API
Access Smashing Magazine's library of articles, books, ebooks, newsletters, and events with powerful search and filtering capabilities. Browse by category, discover related content, explore author profiles, and stay updated with the latest design and web development resources.
apnews.com API
Search for news articles from Associated Press on any topic and retrieve complete article details including headlines, summaries, and content with easy pagination. Stay informed with current news stories by finding and reading articles on subjects that matter to you.
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.