govconwire.com APIgovconwire.com ↗
Access GovConWire articles, executive profiles, company news, and category feeds via API. 8 endpoints covering stories, search, and GovCon executive data.
curl -X GET 'https://api.parse.bot/scraper/e4330d8f-55e5-4992-9e51-5041730e296e/get_latest_stories?limit=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the latest stories from the GovConWire homepage. Returns stories in reverse chronological order.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of stories to return (max 100). |
{
"type": "object",
"fields": {
"stories": "array of story objects, each containing id, title, slug, url, date, excerpt, author_id, categories, and tags"
},
"sample": {
"data": {
"stories": [
{
"id": 343340,
"url": "https://www.govconwire.com/articles/intel-alex-katouzian-evp-pushkar-ranade-cto",
"date": "2026-05-06T04:58:08",
"slug": "intel-alex-katouzian-evp-pushkar-ranade-cto",
"tags": [],
"title": "Intel Taps Alex Katouzian to Lead Client Computing & Physical AI",
"excerpt": "Intel has appointed Alex Katouzian as executive vice president...",
"author_id": 1039864,
"categories": [
29,
1
]
}
]
},
"status": "success"
}
}About the govconwire.com API
The GovConWire API provides 8 endpoints for accessing government contracting news, executive profiles, and company-tagged stories from govconwire.com. The get_article endpoint returns full article body text alongside metadata like categories, tags, author ID, and publication date. Endpoints cover browsing by category, keyword search, company-specific news feeds, and paginated executive directory listings — making it straightforward to build GovCon intelligence tools without scraping the site manually.
Story and Article Access
The get_latest_stories endpoint returns story objects in reverse chronological order, with each object containing id, title, slug, url, date, excerpt, author_id, categories, and tags. You can retrieve up to 100 stories per call. To get the full article text, pass the slug from any story object to get_article, which returns the same metadata fields plus a body field containing the complete article text.
Category, Search, and Company Feeds
get_category_stories accepts a category slug (e.g. contract-awards, exec-moves, ma-activity) and returns paginated results including total_count and total_pages so you can walk the full archive. search_stories accepts a query string and similarly returns paginated results with total_count. For company-specific tracking, get_company_news takes a company slug (e.g. leidos, booz-allen-hamilton) and returns all stories tagged with that company, plus a company_info object that may include a description when available.
Executive Directory
get_executives_list returns a paginated list of GovCon executive objects, each with name, slug, and url. Passing a valid slug to get_executive_profile returns structured profile data: name, title, company, bio, industry, and url. The industry field may be empty for some profiles. Use get_executives_list first to discover valid slugs before querying individual profiles.
Popular Stories
get_most_popular_stories requires no inputs and returns the homepage sidebar popular stories list, with each object containing title and url. This endpoint is useful for trend monitoring but returns only title and url — not the full story metadata fields returned by other endpoints.
- Monitor contract award announcements by polling
get_category_storieswith thecontract-awardsslug - Track executive moves at a specific company by combining
get_company_newsandget_executive_profileresults - Build a GovCon news digest by fetching
get_latest_storieson a schedule and storing newslugvalues - Search historical articles about a specific program or agency keyword using
search_storieswith pagination - Compile executive bios and titles for a GovCon directory using
get_executives_listandget_executive_profile - Identify trending topics by comparing
get_most_popular_storiesresults over time against category feeds - Aggregate M&A coverage by querying
get_category_storieswith thema-activitycategory slug
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does GovConWire offer an official developer API?+
What does `get_company_news` return, and how do I find valid company slugs?+
total_count, the resolved company name string, and a company_info object that may include a description. Valid slugs must match existing tags on the site — examples include leidos and booz-allen-hamilton. The best way to discover slugs is to check the tags array on story objects returned by get_latest_stories or search_stories.Does `get_most_popular_stories` return the same fields as other story endpoints?+
title and url per story — not id, slug, date, excerpt, author_id, categories, or tags. To get full metadata for a popular story, take its URL, extract the slug, and call get_article with that slug.Are there endpoints for contract award dollar amounts, award winners, or contracting agency details?+
body text of relevant articles. You can fork this API on Parse and revise it to add a structured contract-data extraction endpoint.What are the pagination limitations across endpoints?+
get_category_stories, search_stories, get_company_news, get_executives_list) accept a page integer and a limit up to 100. total_count and total_pages are returned where applicable, so you can calculate how many requests are needed to walk a full result set. get_most_popular_stories is not paginated and returns a fixed sidebar list.