Inshorts News API
Overview
The Inshorts News API is an unofficial, open-source wrapper that fetches bite-sized news summaries from the Inshorts mobile app. No API key is required, making it one of the easiest news APIs to start with. Each article is summarized in 60 words or less, perfect for compact news display interfaces.
Beginner Tip
This is an unofficial API hosted on GitHub, so availability depends on the community maintainer; always check the repository for the latest base URL. Use category names like national, business, or sports as the path parameter to filter news topics.
Available Data
Example Response
{
"totalArticles": 100,
"articles": [
{
"title": "Tech Industry Sees Record Growth",
"source": {
"name": "TechNews",
"url": "https://technews.com"
},
"publishedAt": "2025-01-15T08:00:00Z",
"description": "The technology sector reported unprecedented growth...",
"image": "https://example.com/article-image.jpg",
"url": "https://technews.com/article/123"
}
]
} Field Reference
data Array of news story objects from the selected category data[].title Short headline of the news story data[].content Brief 60-word summary of the news story data[].author Name of the Inshorts editor who wrote the summary data[].date Publication date of the story data[].imageUrl URL of the thumbnail image associated with the story Implementation Example
const url = "https://github.com/cyberboysumanjay/Inshorts-News-API";
const response = await fetch(url);
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Fully tested on Apr 5, 2026
Technical Specifications
Related Tags
Similar APIs
View All →Chronicling America
⭐ Beginner's PickChronicling America provides free access to millions of digitized historic US newspaper pages from the Library of Congress, spanning from 1770 to 1963.
Graphs for Coronavirus
Graphs for Coronavirus provides programmatic access to each country separately and worldwide graphs for coronavirus.
Spaceflight News
⭐ Beginner's PickSpaceflight News API is a free, open REST API that delivers the latest news, blogs, and reports specifically about spaceflight, rockets, and space exploration.
Associated Press
The Associated Press Developer API gives you programmatic access to AP news content and metadata, one of the most trusted wire services in the world.
Currents
⭐ Beginner's PickCurrents API delivers the latest news from thousands of sources, blogs, and online forums in real time.