Discover/IBEF API
live

IBEF APIibef.org

Access Indian industry reports, state profiles, macroeconomic data, and economy news via the IBEF API. 9 endpoints covering sectors, states, and search.

Endpoint health
verified 4d ago
get_state_report
get_news_list
get_economy_overview
get_industry_list
get_industry_report
9/9 passing latest checkself-healing
Endpoints
9
Updated
26d ago

What is the IBEF API?

The IBEF API provides structured access to India Brand Equity Foundation data across 9 endpoints, covering industry sector reports, state and Union Territory profiles, macroeconomic overviews, and the latest economy news. The get_industry_report endpoint returns detailed sections including market size, growth drivers, government initiatives, and investment data for any sector slug retrieved from get_industry_list.

Try it

No input parameters required.

api.parse.bot/scraper/fdf4e7e7-ffd6-4b9d-b630-bae97ca58156/<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/fdf4e7e7-ffd6-4b9d-b630-bae97ca58156/get_industry_list' \
  -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 ibef-org-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.ibef_india_economy_api import IBEF, Industry, IndustryReport, State, StateReport, NewsArticle, SearchHit, IndiaSnapshot, SnapshotSection

# Initialize the IBEF client
ibef = IBEF()

# List all industries and print details
for industry in ibef.industries.list(limit=5):
    print(industry.name, industry.slug)

# Get a detailed industry report
report = ibef.industryreports.get(slug="india-automobiles")
print(report.title, report.tagline)

# List all states
for state in ibef.states.list(limit=3):
    print(state.name, state.slug)

# Get a state report
state_report = ibef.statereports.get(slug="maharashtra")
print(state_report.title, state_report.url)

# Browse latest news articles
for article in ibef.newsarticles.list(limit=5):
    print(article.title, article.date)

# Get full article content
full_article = ibef.newsarticles.get(slug="india-named-official-ai-country-partner-for-vivatech-2026-showcasing-leadership-in-ai-and-digital-innovation")
print(full_article.title, full_article.date)

# Get economy overview
overview = ibef.economyoverviews.get()
print(overview.title, overview.url)

# Get India snapshot
snapshot = ibef.indiasnapshots.get()
print(snapshot.title, snapshot.last_updated)
for section in snapshot.sections:
    print(section.heading, section.content[:80])

# Search across IBEF
for hit in ibef.searchhits.search(query="electric vehicles", limit=5):
    print(hit.title, hit.url)
All endpoints · 9 totalmissing one? ·

Returns the full list of all industry sectors covered by IBEF with their URL slugs. Each industry entry includes name, slug, and URL. No parameters required. Use industry slugs to fetch detailed reports via get_industry_report.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "industries": "array of objects with name, slug, and url for each industry sector"
  },
  "sample": {
    "data": {
      "industries": [
        {
          "url": "https://www.ibef.org/industry/agriculture-india",
          "name": "Agriculture and Allied Industries",
          "slug": "agriculture-india"
        },
        {
          "url": "https://www.ibef.org/industry/india-automobiles",
          "name": "Automobiles",
          "slug": "india-automobiles"
        },
        {
          "url": "https://www.ibef.org/industry/information-technology-india",
          "name": "IT & BPM",
          "slug": "information-technology-india"
        }
      ]
    },
    "status": "success"
  }
}

About the IBEF API

Industry and State Reports

The get_industry_list endpoint returns every sector covered by IBEF as an array of objects with name, slug, and url fields. Pass any slug value to get_industry_report to retrieve a full sector report. The response includes a sections object with keys like snapshot, advantage_india, growth_drivers, government_initiatives, and market_size — each containing the structured text content for that section. Parallel endpoints get_states_list and get_state_report follow the same pattern for all Indian states and Union Territories, with get_state_report returning sections such as key_statistics, economic_scenario, and advantage_state.

Economy and Snapshot Data

get_economy_overview returns the Indian Economy Overview page as a title and content string covering GDP statistics and sector-wise economic data. get_india_snapshot returns the India at a Glance page as a structured sections array, where each item includes a heading, content, items, and paragraphs — covering geographic, demographic, political, and transportation quick facts. The response also includes a last_updated date string.

News and Search

get_news_list returns up to 10 articles per page (0-indexed page parameter), each with newsTitle, slugUrl, newsShortDesc, newsAuthor, and createdDate. Pass a slugUrl value to get_news_article to retrieve the full article content, date, and title. The search endpoint accepts a required query string and an optional page integer, returning an array of results with title, url, and description, plus a total_results count and pagination_html for navigating additional pages.

Reliability & maintenanceVerified

The IBEF API is a managed, monitored endpoint for ibef.org — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when ibef.org 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 ibef.org 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
9/9 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
  • Monitor Indian sector trends by pulling market_size and growth_drivers sections from get_industry_report for a target industry.
  • Build a state investment dashboard using key_statistics and economic_scenario from get_state_report across all states.
  • Track daily Indian economy headlines by paginating get_news_list and fetching full text via get_news_article.
  • Populate a macroeconomic data feed with GDP and sector-wise figures from get_economy_overview.
  • Display quick India geographic and demographic facts in a country-profile tool using get_india_snapshot sections.
  • Search IBEF's full content library by topic with search, filtering results by title and description to find relevant reports.
  • Compare government initiative coverage across multiple industries by iterating get_industry_report and extracting the government_initiatives section.
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 IBEF have an official developer API?+
IBEF does not publish an official public developer API. The IBEF API on Parse provides the structured access to IBEF content described in this listing.
What does get_industry_report actually return, and how granular is the data?+
It returns a sections object whose keys vary by industry but typically include snapshot, advantage_india, growth_drivers, government_initiatives, market_size, and investments. Each value is the text content from that section of the IBEF report. Not every section appears for every industry — availability depends on what IBEF has published for that slug.
Does the news endpoint support filtering by category, industry, or date range?+
Not currently. get_news_list supports only page for pagination and returns the latest articles in publication order. You can fork the API on Parse and revise it to add filtering parameters targeting specific news categories or date ranges.
Are historical versions of industry reports or archived pages accessible?+
Not currently. The API returns the current published version of each industry or state report. Historical snapshots and archived report versions are not exposed. You can fork the API on Parse and revise it to store and timestamp report responses as they change over time.
How does pagination work across endpoints that support it?+
get_news_list and search both accept a 0-indexed page integer. Both return a pagination or pagination_html field containing HTML navigation markup alongside the result array. total_results on search reflects the count for the current page, not the full corpus count, so iterate pages until the result array is empty to determine full coverage.
Page content last updated . Spec covers 9 endpoints from ibef.org.
Related APIs in Government PublicSee all →
esankhyiki.mospi.gov.in API
Access India's official macroeconomic statistics including RBI indicators, National Accounts data, and labor force surveys directly from the government's statistical database. Browse dashboards, infographics, and detailed metadata to explore economic trends, employment figures, and key financial indicators.
cbinsights.com API
Access CB Insights data including company and investor profiles, funding history, competitor maps, the unicorn list, and research reports.
screener.in API
Search and analyze Indian stocks with real-time financial data, company details, IPO information, price history, and peer comparisons. Get instant access to stock screening results, market listings, and company announcements to make informed investment decisions.
tradeindia.com API
Search and discover products, suppliers, and their contact information on TradeIndia's B2B marketplace. Browse product categories, find supplier profiles, and explore upcoming tradeshows and industry events — including locations, dates, venues, and organizer details.
insights.apmiindia.org API
Access comprehensive financial data on Indian PMS providers and investment approaches, including AUM breakdowns, industry dashboards, and detailed provider information. Search and compare investment strategies, view discretionary AUM details, and generate insight reports to analyze the PMS market landscape.
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.
tradestat.commerce.gov.in API
Analyze India's trade patterns by searching export-import data across commodities, countries, and regions using HS codes and historical records. Track bilateral trade flows and commodity-wise statistics to understand market trends and make informed trade decisions.
annualreports.com API
Search for and access thousands of international company annual reports in PDF and HTML formats, while filtering by ticker, exchange, industry, sector, company size, and location. Browse company profiles and financial documents across different markets and industries to find the information you need.