magzter.com APImagzter.com ↗
Access Magzter's full catalog of magazines, newspapers, and articles. Search publications, browse issues, fetch article bodies, and retrieve category listings.
curl -X GET 'https://api.parse.bot/scraper/dddbddd3-be24-41d6-bb47-de690a401036/search_publications?page=0&query=technology' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for magazines, newspapers, and stories by keyword. Returns paginated results from the Magzter catalog.
| Param | Type | Description |
|---|---|---|
| page | integer | Zero-based page number for pagination. |
| queryrequired | string | Search keyword. |
{
"type": "object",
"fields": {
"hits": "array of publication objects matching the search query",
"page": "current page number",
"nbHits": "total number of matching results",
"nbPages": "total number of pages available"
},
"sample": {
"data": {
"hits": [
{
"Con": "United States",
"cat": [
"technology",
"news"
],
"lang": [
"english"
],
"slug": "US/MIT-Technology-Review/MIT-Technology-Review/Technology/",
"isGold": 1,
"magUrl": "https://www.magzter.com/US/MIT-Technology-Review/MIT-Technology-Review/Technology/",
"magName": "MIT Technology Review",
"pubName": "MIT Technology Review",
"issPrice": "9.99",
"objectID": "31319",
"oneYearPrice": "59.99"
}
],
"page": 0,
"nbHits": 1206,
"nbPages": 41,
"hitsPerPage": 30
},
"status": "success"
}
}About the magzter.com API
The Magzter API exposes 9 endpoints covering the full catalog of magazines, newspapers, and individual stories available on magzter.com. Use search_publications to find publications by keyword across the entire catalog, get_publication_issues to pull an archive of dated issues with cover images, or get_story_details to retrieve full article body text, author, publisher, and publication date for any story.
Catalog and Search
The search_publications endpoint accepts a query string and optional zero-based page parameter, returning an array of publication hits alongside nbHits (total matches) and nbPages for pagination. Separate endpoints — get_magazines_catalog and get_newspapers_catalog — let you page through the full magazine and newspaper catalogs independently, each returning the same paginated structure. get_categories returns a flat array of category name strings you can use to navigate the content tree.
Publication and Issue Data
get_publication_details accepts a slug (e.g. US/TIME-USA-LLC/Time/News/) and returns schema.org Periodical data: the canonical url, name, publisher organization object, and an offers array covering subscription and purchase options. get_publication_issues takes the same slug and returns an issues array where each element includes name, datePublished, url, and a cover image, plus an editorial description and the publication name at the root level.
Issue and Story Details
get_issue_details takes a full issue URL from the issues array and returns a metadata object with schema.org Periodical data scoped to that issue, plus an in_this_issue string summarizing the table of contents. For individual articles, get_story_details accepts a full story URL and returns headline, articleBody (full text), author, publisher, datePublished, and the story's originating publication context.
Stories by Category
get_stories_by_category accepts an optional category name and section_id to scope results, returning an itemListElement array of schema.org ListItem objects. Each item wraps an Article with headline, description, image, and url, making it straightforward to build category-scoped article feeds.
- Build a magazine discovery tool that surfaces new publications by category using
get_categoriesandget_magazines_catalog. - Track issue publication cadence and cover changes for a set of titles using
get_publication_issuesand itsdatePublishedfield. - Aggregate full article text for NLP or summarization pipelines using the
articleBodyfield fromget_story_details. - Index Magzter's newspaper catalog for a media monitoring dashboard using
get_newspapers_catalog. - Compare subscription and purchase offer structures across publications using the
offersarray fromget_publication_details. - Build a content feed for a specific topic using
get_stories_by_categoryfiltered bycategoryandsection_id. - Populate a publication archive viewer with issue dates and cover images from
get_publication_issues.
| 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 Magzter have an official developer API?+
What does `get_publication_details` return beyond the publication name?+
get_publication_details returns the canonical url, a publisher object with organization details, and an offers array describing subscription and purchase options for that publication. It uses the publication slug (e.g. US/TIME-USA-LLC/Time/News/) as its only required input.Does the API expose reader reviews, ratings, or user-generated content for publications?+
How does pagination work across catalog endpoints?+
search_publications, get_magazines_catalog, and get_newspapers_catalog — use a zero-based page parameter. Each response includes page (current), nbHits (total results), and nbPages (total pages), so you can iterate through the full result set without guessing page counts.Does the API return paywall-restricted article content from premium publications?+
articleBody field in get_story_details returns text for stories accessible via the Magzter stories section. Full issue article content behind subscription paywalls is not exposed — the API covers issue metadata and table-of-contents summaries via in_this_issue for those. You can fork it on Parse and revise to add the missing endpoint if your use case requires broader content access.