tek.no APItek.no ↗
Access articles, product reviews, deals, mobile subscriptions, and broadband plans from tek.no via 13 structured endpoints. Norwegian tech data in JSON.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/a5dfe3c1-452b-4872-b316-557639a1aba0/get_homepage_articles' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieve the latest articles, tests, and news from the tek.no homepage. Returns articles aggregated from various homepage sections.
No input parameters required.
{
"type": "object",
"fields": {
"articles": "array of article objects with id, title, url, description, image, authors, dates, tags, and section"
},
"sample": {
"data": {
"articles": [
{
"id": "16qxzq",
"url": "/nyheter/nyhet/i/16qxzq/netflix-oeker-prisene",
"title": "Netflix øker prisene",
"section": {
"title": "Nyhet"
},
"description": "Skal også få reklame i 2027."
}
]
},
"status": "success"
}
}About the tek.no API
The tek.no API provides structured access to Norway's leading technology publication through 13 endpoints covering news, product reviews, deals, and telecom comparisons. The get_article_detail endpoint returns full article body content as structured component blocks, while get_mobile_subscriptions delivers operator-level plan data including monthly fees and included data — fields not typically available from generic news APIs.
Articles and Content
The API exposes tek.no's full editorial output across multiple content types. get_homepage_articles returns the current front page without parameters, giving you articles with id, title, url, description, image, authors, dates, tags, and section. search_articles accepts a required query string and an optional page integer, returning paginated results with a pagination object containing page and numberOfPages. get_articles_by_type filters by a required type parameter accepting guider, nyheter, sniktitt, kommentar, or gaming — matching tek.no's own editorial categories.
Product Reviews and Tests
get_all_reviews returns two top-level keys: categories (an array with id, name, slug, metaDescription, and nested children) and recent_tests (comparative tests with a table field holding structured product comparison data). Use the category_id and slug values from that response to call get_reviews_by_category, which returns review objects including ratings and latestReview metadata. Pass latestReview.articleId and latestReview.articleSlug as test_id and slug to get_review_detail to retrieve the full review with components, rating, conclusion, and pricing context.
Telecom Comparisons and Deals
get_mobile_subscriptions and get_mobile_broadband_plans both return structured plan arrays for Norwegian operators. Each plan object includes id, name, slug, an operator object with name, network, and logo, and a pricingModel with monthlyFee and dataIncluded. These endpoints are suited for building Norwegian mobile plan comparison tools without manually tracking operator pages. get_deals returns current product offers with pricing and product information from tek.no's deals section.
Guides and Gaming
get_guides and get_gaming_articles each return article arrays with the same field shape: id, title, url, description, image, authors, dates, tags, and section. Both are read-only with no input parameters, reflecting the current state of those sections at call time.
- Build a Norwegian tech news aggregator pulling from
get_latest_newsandget_homepage_articleswith structured author and tag data. - Create a mobile plan comparison tool for Norwegian consumers using operator, network, and pricing fields from
get_mobile_subscriptions. - Monitor product review scores across categories by chaining
get_all_reviews,get_reviews_by_category, andget_review_detail. - Track current Norwegian tech deals and price changes via the
get_dealsendpoint. - Implement keyword-based article search for a content research tool using
search_articleswith pagination support. - Aggregate tek.no buying guides and how-to content by category using
get_guidesandget_articles_by_typewith typeguider. - Surface competitive gaming coverage in a gaming-focused app using
get_gaming_articlesarticle metadata including tags and section.
| 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 tek.no offer an official developer API?+
What does `get_review_detail` return beyond what `get_reviews_by_category` provides?+
get_reviews_by_category gives you summary-level data including ratings and latestReview identifiers. get_review_detail returns the full review article including components (structured body content blocks), conclusion, authors, dates, and pricing context — fields not present in the category listing response.Does the API return user comments or community forum posts from tek.no?+
Is the `get_articles_by_type` endpoint limited to specific values for the `type` parameter?+
type parameter accepts exactly five values: guider, nyheter, sniktitt, kommentar, and gaming. These correspond to editorial sections on tek.no. Passing any other value will not return results. If you need a section not in this list, you can fork the API on Parse and revise it to add support for additional types.