IT News API

Aggregated IT news and articles. RESTful JSON API for developers.

About

This service aggregates technology news and articles from curated sources. Free tier: 100 requests/hour per IP. No authentication required for read-only endpoints.

API Endpoints

GET /api/articles — list all articles (paginated)
GET /api/articles/:id — get single article
GET /api/articles?tag=golang — filter by tag
GET /api/tags — list all tags with counts
GET /api/feed — latest 10 articles
GET /health — health check

Quick Start

curl https://news.v-stage.ru/api/articles?tag=golang

Response Format

{
  "data": [
    {
      "id": 1029,
      "slug": "go-124-released-with-improved-generics",
      "title": "Go 1.24 released with improved generics",
      "summary": "The latest Go release brings faster compilation...",
      "author": "Alex Petrov",
      "tags": ["golang"],
      "created_at": "2026-04-18T10:30:00Z",
      "read_time_min": 5,
      "url": "https://news.v-stage.ru/articles/..."
    }
  ],
  "page": 1,
  "per_page": 20,
  "total": 30
}

Rate Limits